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

*-demo page

This commit is contained in:
Marc Harter 2010-08-14 13:52:01 -05:00
parent 8296e85e27
commit 07f2546d2c

View File

@ -1,16 +1,23 @@
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
<title>Test Page</title> <title>js-shapefile-to-geojson Demo Page</title>
<style> <style>
html, body, #map { html, body {
height: 100%; height: 100%;
width: 100%; width: 100%;
} }
#map {
height: 400px;
background-color: #eee;
}
</style> </style>
</head> </head>
<body> <body>
<div id="map">See Console Logs</div> <h2>js-shapefile-to-geojson Demo Page</h2>
<p>Pure client-side JavaScript (no server side code) parsing of shapefiles and dbase files to GeoJSON format displayed using OpenLayers.</p>
<div id="map"></div>
<p>View project at <a href="http://github.com/wavded/js-shapefile-to-geojson">http://github.com/wavded/js-shapefile-to-geojson</a>.
<script src="http://rs1.adc4gis.com/js/openlayers/2.9.1/OpenLayers-Proj4.js"></script> <script src="http://rs1.adc4gis.com/js/openlayers/2.9.1/OpenLayers-Proj4.js"></script>
<script src="stream.js"></script> <script src="stream.js"></script>
<script src="shapefile.js"></script> <script src="shapefile.js"></script>