]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index/directions-endpoint.js
Remove endpoint markers in disable method
[rails.git] / app / assets / javascripts / index / directions-endpoint.js
1 OSM.DirectionsEndpoint = function Endpoint(map, input, iconUrl, dragCallback, changeCallback) {
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.enable = function () {
18     endpoint.marker.on("drag dragend", markerDragListener);
19     input.on("keydown", inputKeydownListener);
20     input.on("change", inputChangeListener);
21   };
22
23   endpoint.disable = function () {
24     endpoint.marker.off("drag dragend", markerDragListener);
25     input.off("keydown", inputKeydownListener);
26     input.off("change", inputChangeListener);
27
28     map.removeLayer(endpoint.marker);
29   };
30
31   function markerDragListener(e) {
32     var latlng = e.target.getLatLng();
33
34     setLatLng(latlng);
35     setInputValueFromLatLng(latlng);
36     endpoint.value = input.val();
37     dragCallback(e.type === "drag");
38   }
39
40   function inputKeydownListener() {
41     input.removeClass("is-invalid");
42   }
43
44   function inputChangeListener(e) {
45     // make text the same in both text boxes
46     var value = e.target.value;
47     endpoint.setValue(value);
48   }
49
50   endpoint.setValue = function (value, latlng) {
51     endpoint.value = value;
52     delete endpoint.latlng;
53     input.removeClass("is-invalid");
54     input.val(value);
55
56     if (latlng) {
57       setLatLng(latlng);
58       setInputValueFromLatLng(latlng);
59       changeCallback();
60     } else if (endpoint.value) {
61       getGeocode();
62     }
63   };
64
65   function getGeocode() {
66     endpoint.awaitingGeocode = true;
67
68     var viewbox = map.getBounds().toBBoxString(); // <sw lon>,<sw lat>,<ne lon>,<ne lat>
69
70     $.getJSON(OSM.NOMINATIM_URL + "search?q=" + encodeURIComponent(endpoint.value) + "&format=json&viewbox=" + viewbox, function (json) {
71       endpoint.awaitingGeocode = false;
72       if (json.length === 0) {
73         input.addClass("is-invalid");
74         alert(I18n.t("javascripts.directions.errors.no_place", { place: endpoint.value }));
75         return;
76       }
77
78       setLatLng(L.latLng(json[0]));
79
80       input.val(json[0].display_name);
81
82       changeCallback();
83     });
84   }
85
86   function setLatLng(ll) {
87     endpoint.latlng = ll;
88     endpoint.marker
89       .setLatLng(ll)
90       .addTo(map);
91   }
92
93   function setInputValueFromLatLng(latlng) {
94     var precision = OSM.zoomPrecision(map.getZoom());
95
96     input.val(latlng.lat.toFixed(precision) + ", " + latlng.lng.toFixed(precision));
97   }
98
99   return endpoint;
100 };