mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 05:18:40 +00:00
14 lines
399 B
JavaScript
14 lines
399 B
JavaScript
function init() {
|
|
var map = new OpenLayers.Map({
|
|
div: "map",
|
|
projection: new OpenLayers.Projection("EPSG:900913"),
|
|
displayProjection: new OpenLayers.Projection("EPSG:4326"),
|
|
layers: [
|
|
new OpenLayers.Layer.OSM()
|
|
]
|
|
});
|
|
if (!map.getCenter()) map.zoomToMaxExtent();
|
|
|
|
map.addControl(new OpenLayers.Control.Permalink({anchor: true}));
|
|
}
|