]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index/directions-endpoint.js
Merge pull request #5056 from AntonKhorev/diary-og-description
[rails.git] / app / assets / javascripts / index / directions-endpoint.js
1 OSM.DirectionsEndpoint = function Endpoint(map, input, iconUrl, dragCallback, geocodeCallback) {
2   var endpoint = {};
3
4   endpoint.marker = L.marker([0, 0], {
5     icon: L.icon({
6       iconUrl: iconUrl,
7       iconSize: [25, 41],
8       iconAnchor: [12, 41],
9       popupAnchor: [1, -34],
10       shadowUrl: OSM.MARKER_SHADOW,
11       shadowSize: [41, 41]
12     }),
13     draggable: true,
14     autoPan: true
15   });
16
17   endpoint.marker.on("drag dragend", function (e) {
18     endpoint.setLatLng(e.target.getLatLng());
19     dragCallback(e.type === "drag");
20   });
21
22   input.on("keydown", function () {
23     input.removeClass("is-invalid");
24   });
25
26   input.on("change", function (e) {
27     // make text the same in both text boxes
28     var value = e.target.value;
29     endpoint.setValue(value);
30   });
31
32   endpoint.setValue = function (value, latlng) {
33     endpoint.value = value;
34     delete endpoint.latlng;
35     input.removeClass("is-invalid");
36     input.val(value);
37
38     if (latlng) {
39       endpoint.setLatLng(latlng);
40     } else {
41       endpoint.getGeocode();
42     }
43   };
44
45   endpoint.getGeocode = function () {
46     // if no one has entered a value yet, then we can't geocode, so don't
47     // even try.
48     if (!endpoint.value) {
49       return;
50     }
51
52     endpoint.awaitingGeocode = true;
53
54     var viewbox = map.getBounds().toBBoxString(); // <sw lon>,<sw lat>,<ne lon>,<ne lat>
55
56     $.getJSON(OSM.NOMINATIM_URL + "search?q=" + encodeURIComponent(endpoint.value) + "&format=json&viewbox=" + viewbox, function (json) {
57       endpoint.awaitingGeocode = false;
58       endpoint.hasGeocode = true;
59       if (json.length === 0) {
60         input.addClass("is-invalid");
61         alert(I18n.t("javascripts.directions.errors.no_place", { place: endpoint.value }));
62         return;
63       }
64
65       endpoint.setLatLng(L.latLng(json[0]));
66
67       input.val(json[0].display_name);
68
69       geocodeCallback();
70     });
71   };
72
73   endpoint.setLatLng = function (ll) {
74     var precision = OSM.zoomPrecision(map.getZoom());
75     input.val(ll.lat.toFixed(precision) + ", " + ll.lng.toFixed(precision));
76     endpoint.hasGeocode = true;
77     endpoint.latlng = ll;
78     endpoint.marker
79       .setLatLng(ll)
80       .addTo(map);
81   };
82
83   return endpoint;
84 };