35 lines
690 B
JavaScript
35 lines
690 B
JavaScript
goog.require('ol.Graticule');
|
|
goog.require('ol.Map');
|
|
goog.require('ol.View');
|
|
goog.require('ol.layer.Tile');
|
|
goog.require('ol.proj');
|
|
goog.require('ol.source.OSM');
|
|
goog.require('ol.style.Stroke');
|
|
|
|
|
|
var map = new ol.Map({
|
|
layers: [
|
|
new ol.layer.Tile({
|
|
source: new ol.source.OSM()
|
|
})
|
|
],
|
|
target: 'map',
|
|
view: new ol.View({
|
|
center: ol.proj.fromLonLat([4.8, 47.75]),
|
|
zoom: 5
|
|
})
|
|
});
|
|
|
|
// Create the graticule component
|
|
var graticule = new ol.Graticule({
|
|
// the style to use for the lines, optional.
|
|
strokeStyle: new ol.style.Stroke({
|
|
color: 'rgba(255,120,0,0.9)',
|
|
width: 2,
|
|
lineDash: [0.5, 4]
|
|
}),
|
|
showLabels: true
|
|
});
|
|
|
|
graticule.setMap(map);
|