74 lines
1.5 KiB
JavaScript
74 lines
1.5 KiB
JavaScript
goog.require('ol.Map');
|
|
goog.require('ol.Overlay');
|
|
goog.require('ol.View');
|
|
goog.require('ol.coordinate');
|
|
goog.require('ol.layer.Tile');
|
|
goog.require('ol.proj');
|
|
goog.require('ol.source.TileJSON');
|
|
|
|
|
|
/**
|
|
* Elements that make up the popup.
|
|
*/
|
|
var container = document.getElementById('popup');
|
|
var content = document.getElementById('popup-content');
|
|
var closer = document.getElementById('popup-closer');
|
|
|
|
|
|
/**
|
|
* Create an overlay to anchor the popup to the map.
|
|
*/
|
|
var overlay = new ol.Overlay(/** @type {olx.OverlayOptions} */ ({
|
|
element: container,
|
|
autoPan: true,
|
|
autoPanAnimation: {
|
|
duration: 250
|
|
}
|
|
}));
|
|
|
|
|
|
/**
|
|
* Add a click handler to hide the popup.
|
|
* @return {boolean} Don't follow the href.
|
|
*/
|
|
closer.onclick = function() {
|
|
overlay.setPosition(undefined);
|
|
closer.blur();
|
|
return false;
|
|
};
|
|
|
|
|
|
/**
|
|
* Create the map.
|
|
*/
|
|
var map = new ol.Map({
|
|
layers: [
|
|
new ol.layer.Tile({
|
|
source: new ol.source.TileJSON({
|
|
url: 'https://api.tiles.mapbox.com/v3/mapbox.natural-earth-hypso-bathy.json?secure',
|
|
crossOrigin: 'anonymous'
|
|
})
|
|
})
|
|
],
|
|
overlays: [overlay],
|
|
target: 'map',
|
|
view: new ol.View({
|
|
center: [0, 0],
|
|
zoom: 2
|
|
})
|
|
});
|
|
|
|
|
|
/**
|
|
* Add a click handler to the map to render the popup.
|
|
*/
|
|
map.on('singleclick', function(evt) {
|
|
var coordinate = evt.coordinate;
|
|
var hdms = ol.coordinate.toStringHDMS(ol.proj.transform(
|
|
coordinate, 'EPSG:3857', 'EPSG:4326'));
|
|
|
|
content.innerHTML = '<p>You clicked here:</p><code>' + hdms +
|
|
'</code>';
|
|
overlay.setPosition(coordinate);
|
|
});
|