-
Notifications
You must be signed in to change notification settings - Fork 632
/
Copy path0109-basic-center-geoip-example.html
51 lines (48 loc) · 1.79 KB
/
0109-basic-center-geoip-example.html
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
47
48
49
50
51
<!DOCTYPE html>
<html ng-app="demoapp">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="../bower_components/angular/angular.min.js"></script>
<script src="../bower_components/leaflet/dist/leaflet.js"></script><script src="../bower_components/angular-simple-logger/dist/index.js"></script>
<script src="../dist/angular-leaflet-directive.min.js"></script>
<link rel="stylesheet" href="../bower_components/leaflet/dist/leaflet.css" />
<script>
var app = angular.module('demoapp', ['leaflet-directive']);
app.controller('BasicCenterGeoIPController', [ '$scope', '$http', function($scope, $http) {
angular.extend($scope, {
center: {
lat: 0,
lng: 0,
zoom: 2
}
});
$scope.searchIP = function(ip) {
var url = "http://freegeoip.net/json/" + ip;
$http.get(url).success(function(res) {
$scope.center = {
lat: res.latitude,
lng: res.longitude,
zoom: 10
}
$scope.ip = res.ip;
})
};
$scope.searchIP("");
}]);
</script>
<style>
input {
width: 120px;
margin-right: 10px;
}
</style>
</head>
<body ng-controller="BasicCenterGeoIPController">
<leaflet center="center" width="100%" height="480px"></leaflet>
<h1>Center by IP (GeoIP) example</h1>
<p>Insert the IP you want to know its location:</p>
<form>
Insert the IP: <input type="input" ng-model="ip" /> <input type="button" ng-click="searchIP(ip)" value="Search" />
</form>
</body>
</html>