function Endpoint(input, iconUrl) {
var endpoint = {};
+ endpoint.input = input;
+
endpoint.marker = L.marker([0, 0], {
icon: L.icon({
iconUrl: iconUrl,
return endpoint;
}
+ $(".directions_form .reverse_directions").on("click", function() {
+ var input_from = endpoints[0].input.val();
+ var input_to = endpoints[1].input.val();
+ var latlng_from = endpoints[0].latlng;
+ var latlng_to = endpoints[1].latlng;
+
+ endpoints[0].setLatLng(latlng_to);
+ endpoints[1].setLatLng(latlng_from);
+ endpoints[0].input.val(input_to);
+ endpoints[1].input.val(input_from);
+
+ getRoute();
+ });
+
$(".directions_form .close").on("click", function(e) {
e.preventDefault();
var route_from = endpoints[0].value;
<select class="routing_engines" name="routing_engines"></select>
<%= submit_tag t('site.search.submit_text'), :class => "routing_go", :data => { disable_with: false } %>
</div>
+ <div class="line">
+ <a class="reverse_directions"><%= t('site.search.reverse_directions_text') %></a>
+ </div>
<div class="loader_copy"><div class="loader"><%= image_tag "searching.gif" %></div></div>
</form>
where_am_i: "Where is this?"
where_am_i_title: Describe the current location using the search engine
submit_text: "Go"
+ reverse_directions_text: "Reverse Directions"
key:
table:
entry: