aboutsummaryrefslogtreecommitdiffstats
path: root/ipmap.html
blob: e3e6eb7b761429a7f3999f7ee1c3df6ff2c6159d (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
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>Wireshark: IP Location Map</title>
    <script type="text/javascript" src="http://openlayers.org/api/OpenLayers.js"></script>
    <script type="text/javascript" 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_file = "ipmap.txt";
            if (document.location.hash.length > 1) {
              map_file = document.location.hash.substr(1);
            }
            map.addLayer(new OpenLayers.Layer.Text("IP Locations", {
                location: map_file, projection: new OpenLayers.Projection("EPSG:4326")} ) );

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