| 1 | <!--
|
|---|
| 2 | /* OpenLayersHeatmap
|
|---|
| 3 | * Copyright (C) 2010 Felipe Barriga Richards
|
|---|
| 4 | *
|
|---|
| 5 | * This Program is free software; you can redistribute it and/or modify
|
|---|
| 6 | * it under the terms of the GNU General Public License as published by
|
|---|
| 7 | * the Free Software Foundation; either version 2, or (at your option)
|
|---|
| 8 | * any later version.
|
|---|
| 9 | *
|
|---|
| 10 | * This Program is distributed in the hope that it will be useful,
|
|---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 13 | * GNU General Public License for more details.
|
|---|
| 14 | *
|
|---|
| 15 | * You should have received a copy of the GNU General Public License
|
|---|
| 16 | * along with RTMPDump; see the file COPYING. If not, write to
|
|---|
| 17 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|---|
| 18 | * Boston, MA 02110-1301, USA.
|
|---|
| 19 | * http://www.gnu.org/copyleft/gpl.html
|
|---|
| 20 | *
|
|---|
| 21 | */
|
|---|
| 22 |
|
|---|
| 23 | /*
|
|---|
| 24 | * Edited by Dennis Wagenaar
|
|---|
| 25 | */
|
|---|
| 26 | -->
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 | <html xmlns="http://www.w3.org/1999/xhtml">
|
|---|
| 30 | <head>
|
|---|
| 31 | <meta http-equiv="Pragma" content="no-cache">
|
|---|
| 32 | <title>OLHeatmap (OpenLayers Heatmap) (Using OpenStreetMap)</title>
|
|---|
| 33 | <link rel="stylesheet" type="text/css" href="css/style.css" />
|
|---|
| 34 | <script src="OpenLayers/OpenLayers.js"></script>
|
|---|
| 35 | <script src="js/OpenStreetMap.js"></script>
|
|---|
| 36 | <script src="js/test_1.php"></script>
|
|---|
| 37 | </head>
|
|---|
| 38 | <body id="body" onload="init()">
|
|---|
| 39 | <div id="title">OpenLayers Features Heatmap</div>
|
|---|
| 40 | <center>
|
|---|
| 41 | <input type="button" value="Generate Heatmap!" OnClick="generateHeatmap();" />
|
|---|
| 42 | </center>
|
|---|
| 43 | <br/>
|
|---|
| 44 | <div style="width: 100%">
|
|---|
| 45 | <div id="map"></div>
|
|---|
| 46 | <div id="features">
|
|---|
| 47 | <div id="buttons">
|
|---|
| 48 | <input type="button" value="Updatemap" OnClick="onReadyStateChangeUpdateMap();" />
|
|---|
| 49 |
|
|---|
| 50 |
|
|---|
| 51 |
|
|---|
| 52 | <input type="button" value="Add new Feature" OnClick="drawMarkers();" />
|
|---|
| 53 | </div>
|
|---|
| 54 | </div>
|
|---|
| 55 | <div id="separator" onClick="showHidePanel();"></div>
|
|---|
| 56 | </div>
|
|---|
| 57 | <div id="statusBar">
|
|---|
| 58 | Ready!
|
|---|
| 59 | </div>
|
|---|
| 60 | </body>
|
|---|
| 61 | </html>
|
|---|