This topic has 1 reply, 2 voices, and was last updated 2 years, 5 months ago by Fem.
Viewing 2 posts - 1 through 2 (of 2 total)
There appears to be an error in storeup-niche/js/admin_map.js.
In the initialize function, it adds ‘establishment’ to the autocomplete types:
function initialize() {
var search_input_id = document.getElementById(‘iva_loc_address’);
var autocomplete = new google.maps.places.Autocomplete( search_input_id,{ types: [‘geocode’, ‘establishment’] });
}
But later in the file, it creates autocomplete without the establishment type:
var autocomplete = new google.maps.places.Autocomplete(input, {
types: [“geocode”]
});
When updating the address of a location, setting the address to a prompted establishment, it does not correctly geolocate the longitude and latitude
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.