16 lines
427 B
JavaScript
16 lines
427 B
JavaScript
jQuery(document).ready(function($){
|
|
$(".sp-location-picker").locationpicker({
|
|
location: {
|
|
latitude: Number($(".sp-latitude").val()),
|
|
longitude: Number($(".sp-longitude").val())
|
|
},
|
|
radius: 0,
|
|
inputBinding: {
|
|
latitudeInput: $(".sp-latitude"),
|
|
longitudeInput: $(".sp-longitude"),
|
|
locationNameInput: $(".sp-address")
|
|
},
|
|
addressFormat: null,
|
|
enableAutocomplete: true
|
|
});
|
|
}); |