Last change
on this file since 9006 was 9006, checked in by dennisw, 14 years ago |
django_gheat - versie van gheat die gebruik maakt van django framework, ondersteunt SQL connecties in tegenstelling tot gheat dat gebruik maakt van sqlite
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Date Revision
-
Property svn:mime-type
set to
text/html
|
File size:
1.7 KB
|
Rev | Line | |
---|
[9006] | 1 | <html>
|
---|
| 2 | <head>
|
---|
| 3 |
|
---|
| 4 | <script src="http://maps.google.com/maps?file=api&v=2&key={{ google_key }}"></script>
|
---|
| 5 | <script>
|
---|
| 6 |
|
---|
| 7 | bounds = new GLatLngBounds( new GLatLng(-90, -180)
|
---|
| 8 | , new GLatLng(90, 180)
|
---|
| 9 | );
|
---|
| 10 | copyright = new GCopyright( 'your-copyright'
|
---|
| 11 | , bounds
|
---|
| 12 | , 0
|
---|
| 13 | , "(c) 2008 Your Organization " +
|
---|
| 14 | "<http://www.example.org/>"
|
---|
| 15 | );
|
---|
| 16 | copyrights = new GCopyrightCollection();
|
---|
| 17 | copyrights.addCopyright(copyright);
|
---|
| 18 | heatmap = new GTileLayer(copyrights, 10, 0);
|
---|
| 19 | heatmap.getTileUrl = function (tile, zoom) {
|
---|
| 20 | base = 'http://127.0.0.1:8000/gheat/';
|
---|
| 21 | color_scheme = 'firetrans';
|
---|
| 22 | url = base + color_scheme +'/'+ zoom +'/'
|
---|
| 23 | url += tile.x +','+ tile.y +'.png';
|
---|
| 24 | return url;
|
---|
| 25 | }
|
---|
| 26 | heatmap.isPng = function () {return true;}
|
---|
| 27 | heatmap.getOpacity = function () {return 1.0;}
|
---|
| 28 |
|
---|
| 29 | function initialize () {
|
---|
| 30 | var map = new GMap2(document.getElementById("map"));
|
---|
| 31 | var lebanon = new GLatLng(52.390268,4.890976);
|
---|
| 32 | map.setCenter(lebanon, 8);
|
---|
| 33 | map.addOverlay(new GTileLayerOverlay(heatmap));
|
---|
| 34 | }
|
---|
| 35 |
|
---|
| 36 | </script>
|
---|
| 37 | <style>
|
---|
| 38 | body {
|
---|
| 39 | margin: 0;
|
---|
| 40 | padding: 0;
|
---|
| 41 | }
|
---|
| 42 | #map {
|
---|
| 43 | margin: 0;
|
---|
| 44 | padding: 0;
|
---|
| 45 | width: 100%;
|
---|
| 46 | height: 100%;
|
---|
| 47 | }
|
---|
| 48 | </style>
|
---|
| 49 | </head>
|
---|
| 50 | <body onload="initialize()" onunload="GUnload()">
|
---|
| 51 | <div id="map"> </div>
|
---|
| 52 | </body>
|
---|
| 53 | </html>
|
---|
| 54 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.