All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.format.xlink.js Maven / Gradle / Ivy

The newest version!
/**
 * @module ol/format/xlink
 */

/**
 * @const
 * @type {string}
 */
const NAMESPACE_URI = 'http://www.w3.org/1999/xlink';

/**
 * @param {Element} node Node.
 * @return {string|null} href.
 */
export function readHref(node) {
  return node.getAttributeNS(NAMESPACE_URI, 'href');
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy