1
0
mirror of https://github.com/wavded/js-shapefile-to-geojson synced 2024-11-23 14:34:54 +00:00
js-shapefile-to-geojson/index.html

46 lines
1.4 KiB
HTML
Raw Normal View History

2010-07-30 22:25:21 +00:00
<!doctype html>
<html>
<head>
2010-07-31 16:47:07 +00:00
<title>Test Page</title>
2010-07-30 22:25:21 +00:00
<style>
html, body, #map {
height: 100%;
width: 100%;
}
</style>
</head>
<body>
2010-07-31 16:47:07 +00:00
<div id="map">See Console Logs</div>
<script src="http://rs1.adc4gis.com/js/openlayers/2.9.1/OpenLayers-Proj4.js"></script>
2010-07-30 22:25:21 +00:00
<script src="stream.js"></script>
<script src="shapefile.js"></script>
<script src="dbf.js"></script>
<script type="text/javascript">
OpenLayers._getScriptLocation = function(){
return "http://rs1.adc4gis.com/js/openlayers/2.9.1/";
};
2010-07-30 22:25:21 +00:00
var starttime = +new Date,
map = new OpenLayers.Map("map",{allOverlays: true}),
parser = new OpenLayers.Format.GeoJSON(),
vector = new OpenLayers.Layer.Vector("Converted"),
2010-07-30 22:25:21 +00:00
shapefile = new Shapefile({
shp: "testdata/world.shp",
dbf: "testdata/world.dbf"
2010-07-30 22:25:21 +00:00
}, function(data){
var features = parser.read(data.geojson);
vector.addFeatures(features);
map.zoomToExtent(vector.getDataExtent());
2010-07-30 22:25:21 +00:00
console.log("took",new Date - starttime,"milliseconds")
console.log(data);
})
map.addLayer(vector);
2010-07-30 22:25:21 +00:00
</script>
</body>
</html>