Created
November 4, 2012 13:39
-
-
Save ponkore/4011952 to your computer and use it in GitHub Desktop.
map application sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<style type="text/css"> | |
html, body, #map { | |
margin: 0; | |
width: 100%; | |
height: 100%; | |
} | |
#text { | |
position: absolute; | |
bottom: 1em; | |
left: 1em; | |
width: 512px; | |
z-index: 20000; | |
background-color: white; | |
padding: 0 0.5em 0.5em 0.5em; | |
} | |
</style> | |
<script type="text/javascript" src="http://www.openlayers.org/api/OpenLayers.js"></script> | |
</head> | |
<body> | |
<div id="map"></div> | |
<script src="sample.js"></script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var urls = [ | |
"http://a.tile.openstreetmap.org/${z}/${x}/${y}.png", | |
"http://b.tile.openstreetmap.org/${z}/${x}/${y}.png", | |
"http://c.tile.openstreetmap.org/${z}/${x}/${y}.png" | |
]; | |
function init() { | |
} | |
var map = new OpenLayers.Map({ | |
div: "map", | |
layers: [ | |
new OpenLayers.Layer.XYZ("OSM (with buffer)", urls, { | |
transitionEffect: "resize", buffer: 2, sphericalMercator: true | |
}), | |
new OpenLayers.Layer.XYZ("OSM (without buffer)", urls, { | |
transitionEffect: "resize", buffer: 0, sphericalMercator: true | |
}) | |
], | |
controls: [ | |
new OpenLayers.Control.Navigation({ | |
dragPanOptions: { | |
enableKinetic: true | |
} | |
}), | |
new OpenLayers.Control.PanZoom(), | |
new OpenLayers.Control.Attribution(), | |
new OpenLayers.Control.Scale(), | |
new OpenLayers.Control.ScaleLine() | |
], | |
center: [0, 0], | |
zoom: 15 | |
}); | |
map.addControl(new OpenLayers.Control.LayerSwitcher()); | |
var lonLat = new OpenLayers.LonLat(135.49554515839566, 34.70271324154254) | |
.transform( | |
new OpenLayers.Projection("EPSG:4326"), | |
new OpenLayers.Projection("EPSG:900913") | |
); | |
map.setCenter(lonLat, 15); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment