summaryrefslogtreecommitdiff
path: root/ipmap.html
blob: 090a395482e8951509854417f0b668dd612c152e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>Wireshark: IP Location Map</title>
    <script src="http://openlayers.org/api/OpenLayers.js"></script>
    <script src="http://openstreetmap.org/openlayers/OpenStreetMap.js"></script>

    <script type="text/javascript">
        <!--
        var map;

        function init(){
			var map = new OpenLayers.Map("map", {
				controls: [
                    new OpenLayers.Control.PanZoomBar(),
                    new OpenLayers.Control.ScaleLine(),
                    new OpenLayers.Control.MousePosition(),
                    new OpenLayers.Control.MouseDefaults(),
                    new OpenLayers.Control.Attribution()],
				projection: new OpenLayers.Projection("EPSG:900913"),
				displayProjection: new OpenLayers.Projection("EPSG:4326"),
				maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,
											 20037508.34, 20037508.34),
				numZoomLevels: 18,
				maxResolution: 156543,
				units: "m"});

            map.addLayer(new OpenLayers.Layer.OSM.Mapnik("Mapnik"));
            map.addLayer(new OpenLayers.Layer.Text( "IP Locations", { location:"ipmap.txt", projection: new OpenLayers.Projection("EPSG:4326")} ) );

            var lonlat = (new OpenLayers.LonLat(10.0, 20.0));
            lonlat.transform(map.displayProjection, map.projection);
            map.setCenter(lonlat, /* zoom */ 2);
		}
        // -->
    </script>
  </head>
  <body onload="init()">
    <div id="map"></div>
    </form>
  </body>
</html>