Magento2.3.1: How to limit the google locations to specific area?How to add Google Voice Search in Magento?how to track number of visitors visiting the magento site using “Google analytics” or by any other solutionHow to supplement Google Analytics push data during checkoutHow to Validate the Google reCaptchaGoogle Adwords dynamic value is not showing the right valueGoogle search website redirect for the exact product or categoriesMagento2.3.1: Transactional emails are not going to the customerMagento2.3.1:[ERROR] LogicException: Unknown module in the requested list: 'Fastly_Cdn'Magento2.3.1: How to display all attributes of product on a product page?Magento2.3.1: How to add Login/Signup popup on website opens
Are there advantages in writing by hand over typing out a story?
Existence of infinite set of positive integers s.t sum of reciprocals is rational and set of primes dividing an element is infinite
German idiomatic equivalents of 能骗就骗 (if you can cheat, then cheat)
What is the function of const specifier in enum types?
Trace in the category of propositional statements
Is there a word for the act of simultaneously pulling and twisting an object?
How to idiomatically express the idea "if you can cheat without being caught, do it"
Cannot overlay, because ListPlot does not draw same X range despite the same PlotRange
How to track mail undetectably?
Can you run PoE Cat6 alongside standard Cat6 cables?
My players like to search everything. What do they find?
Is it theoretically possible to hack printer using scanner tray?
Could citing a database like libgen get one into trouble?
Which are more efficient in putting out wildfires: planes or helicopters?
What was the point of separating stdout and stderr?
Is it advisable to inform the CEO about his brother accessing his office?
Which high-degree derivatives play an essential role?
Emphasize numbers in tables
GFCI versus circuit breaker
Finding an optimal set without forbidden subsets
Old story where computer expert digitally animates The Lord of the Rings
Why did the Middle Kingdom stop building pyramid tombs?
Tricky riddle from sister
Was Wolfgang Unziker the last Amateur GM?
Magento2.3.1: How to limit the google locations to specific area?
How to add Google Voice Search in Magento?how to track number of visitors visiting the magento site using “Google analytics” or by any other solutionHow to supplement Google Analytics push data during checkoutHow to Validate the Google reCaptchaGoogle Adwords dynamic value is not showing the right valueGoogle search website redirect for the exact product or categoriesMagento2.3.1: Transactional emails are not going to the customerMagento2.3.1:[ERROR] LogicException: Unknown module in the requested list: 'Fastly_Cdn'Magento2.3.1: How to display all attributes of product on a product page?Magento2.3.1: How to add Login/Signup popup on website opens
We are working on hyperlocal modules. We are serving to specific cities as of now only. For this, we have enabled the location selection also. But we need to restrict the places from everywhere to Visakhapatnam and Hyderabad locations only.
We have the js like the following:
It's for all areas. But we need only for Visakhapatnam and Hyderabad locations. Apart from these locations, every location has to show the result as no services are available.
** Script:**
/**
* Webkul MpHyperLocal address form script
* @category Webkul
* @package Webkul_MpHyperLocal
* @author Webkul
* @copyright Copyright (c) Webkul Software Private Limited (https://webkul.com)
* @license https://store.webkul.com/license.html
*/
define(
[
"jquery",
"mage/translate",
"Magento_Ui/js/modal/modal",
"googleMapPlaceLibrary"
],
function ($, $t, modal)
"use strict";
$.widget(
'affiliate.register',
_create: function ()
var optionsData = this.options;
var autocomplete;
var address_Type =
locality: 'long_name',
administrative_area_level_1: 'long_name',
country: 'long_name'
;
var addressMap =
locality: 'city',
administrative_area_level_1: 'state',
country: "country"
;
var selector =
city: 1,
state: 2,
country: 3
;
autocomplete = new google.maps.places.Autocomplete(
/** @type !HTMLInputElement */(document.getElementById('autocomplete')),
types: ['geocode']
);
// When the user selects an address from the dropdown, populate the address
// fields in the form.
autocomplete.addListener('place_changed', fillInAddress);
function fillInAddress()
var place = autocomplete.getPlace();
var data = ;
var custAddressType =
'locality' : 'long_name',
'administrative_area_level_1' : 'long_name',
'country' : 'long_name'
;
var addressMap =
'locality' : 'city',
'administrative_area_level_1' : 'state',
'country' : 'country'
;
$('#autocomplete').attr('data-lat', place.geometry.location.lat());
$('#autocomplete').attr('data-lng', place.geometry.location.lng());
var address_components = place.address_components;
for (var i=0; i<address_components.length; i++)
var addressType = address_components[i]['types'][0];
if (typeof custAddressType[addressType] !== 'undefined')
data[addressMap[addressType]] = address_components[i][custAddressType[addressType]];
if (data.city)
$('#autocomplete').attr('data-city', data.city);
else
$('#autocomplete').attr('data-city', '');
if (data.state)
$('#autocomplete').attr('data-state', data.state);
else
$('#autocomplete').attr('data-state', '');
if (data.country)
$('#autocomplete').attr('data-country', data.country);
else
$('#autocomplete').attr('data-country', '');
if ($('#autocompleteform').length > 0)
var autocompleteform;
autocompleteform = new google.maps.places.Autocomplete(
/** @type !HTMLInputElement */(document.getElementById('autocompleteform')),
types: ['geocode']
);
// When the user selects an address from the dropdown, populate the address
// fields in the form.
autocompleteform.addListener('place_changed', fillInPopupAddress);
function fillInPopupAddress()
// Get the place details from the autocomplete object.
var placepopup = autocompleteform.getPlace();
var address = ($('#autocompleteform').val()).split(",");
console.log(placepopup.address_components);
for (var i = 0; i < placepopup.address_components.length; i++)
var addressType = placepopup.address_components[i].types[0];
if (address_Type[addressType])
var val = placepopup.address_components[i][address_Type[addressType]];
if (val == address[0])
console.log(addressMap[addressType]);
$('#address_type>option:eq('+selector[addressMap[addressType]]+')').prop('selected', true);
$('#latitude').val(placepopup.geometry.location.lat());
$('#longitude').val(placepopup.geometry.location.lng());
var options =
type: 'popup',
responsive: true,
innerScroll: true,
width:'200px',
title: $t(optionsData.popupHeading),
buttons: [
text: $.mage.__('Show'),
class: 'go-to-shop',
click: function ()
var address = $('#autocomplete');
if (address.val())
var conf = confirm($t('If you enter new location, existed cart will empty.'));
if (conf)
$('.go-to-shop').before($('<span />').addClass('loader'));
$.ajax(
url: optionsData.saveAction,
data:
'address':address.val(),
'lat':address.attr('data-lat'),
'lng':address.attr('data-lng'),
'city':address.attr('data-city'),
'state':address.attr('data-state'),
'country':address.attr('data-country')
,
type: 'POST',
dataType:'html',
success: function (transport)
var response = $.parseJSON(transport);
if (response.status)
location.reload();
else
$('.go-to-shop').before($('<span/>').text(response.msg));
);
else
address.focus();
address.css('border', '1px solid red');
]
;
window.popupConfig = 0;
if (optionsData.isAddressSet == 0)
var cont = $('<div />').append($('#select-address-popup'));
modal(options, cont);
if(!window.popupConf['popupconfig'])
cont.modal('openModal');
window.popupConf['popupconfig'] = 1;
$('#selected-location, .my_location').on('click', function ()
var cont = $('<div />').append($('#select-address-popup'));
modal(options, cont);
if(!window.popupConfig)
cont.modal('openModal');
window.popupConfig = 1;
else
window.popupConfig = 0;
);
$('#autocomplete').keypress(function ()
$(this).css('border','1px solid #c2c2c2');
);
);
return $.affiliate.register;
);
magento2.3.1 google-api
add a comment |
We are working on hyperlocal modules. We are serving to specific cities as of now only. For this, we have enabled the location selection also. But we need to restrict the places from everywhere to Visakhapatnam and Hyderabad locations only.
We have the js like the following:
It's for all areas. But we need only for Visakhapatnam and Hyderabad locations. Apart from these locations, every location has to show the result as no services are available.
** Script:**
/**
* Webkul MpHyperLocal address form script
* @category Webkul
* @package Webkul_MpHyperLocal
* @author Webkul
* @copyright Copyright (c) Webkul Software Private Limited (https://webkul.com)
* @license https://store.webkul.com/license.html
*/
define(
[
"jquery",
"mage/translate",
"Magento_Ui/js/modal/modal",
"googleMapPlaceLibrary"
],
function ($, $t, modal)
"use strict";
$.widget(
'affiliate.register',
_create: function ()
var optionsData = this.options;
var autocomplete;
var address_Type =
locality: 'long_name',
administrative_area_level_1: 'long_name',
country: 'long_name'
;
var addressMap =
locality: 'city',
administrative_area_level_1: 'state',
country: "country"
;
var selector =
city: 1,
state: 2,
country: 3
;
autocomplete = new google.maps.places.Autocomplete(
/** @type !HTMLInputElement */(document.getElementById('autocomplete')),
types: ['geocode']
);
// When the user selects an address from the dropdown, populate the address
// fields in the form.
autocomplete.addListener('place_changed', fillInAddress);
function fillInAddress()
var place = autocomplete.getPlace();
var data = ;
var custAddressType =
'locality' : 'long_name',
'administrative_area_level_1' : 'long_name',
'country' : 'long_name'
;
var addressMap =
'locality' : 'city',
'administrative_area_level_1' : 'state',
'country' : 'country'
;
$('#autocomplete').attr('data-lat', place.geometry.location.lat());
$('#autocomplete').attr('data-lng', place.geometry.location.lng());
var address_components = place.address_components;
for (var i=0; i<address_components.length; i++)
var addressType = address_components[i]['types'][0];
if (typeof custAddressType[addressType] !== 'undefined')
data[addressMap[addressType]] = address_components[i][custAddressType[addressType]];
if (data.city)
$('#autocomplete').attr('data-city', data.city);
else
$('#autocomplete').attr('data-city', '');
if (data.state)
$('#autocomplete').attr('data-state', data.state);
else
$('#autocomplete').attr('data-state', '');
if (data.country)
$('#autocomplete').attr('data-country', data.country);
else
$('#autocomplete').attr('data-country', '');
if ($('#autocompleteform').length > 0)
var autocompleteform;
autocompleteform = new google.maps.places.Autocomplete(
/** @type !HTMLInputElement */(document.getElementById('autocompleteform')),
types: ['geocode']
);
// When the user selects an address from the dropdown, populate the address
// fields in the form.
autocompleteform.addListener('place_changed', fillInPopupAddress);
function fillInPopupAddress()
// Get the place details from the autocomplete object.
var placepopup = autocompleteform.getPlace();
var address = ($('#autocompleteform').val()).split(",");
console.log(placepopup.address_components);
for (var i = 0; i < placepopup.address_components.length; i++)
var addressType = placepopup.address_components[i].types[0];
if (address_Type[addressType])
var val = placepopup.address_components[i][address_Type[addressType]];
if (val == address[0])
console.log(addressMap[addressType]);
$('#address_type>option:eq('+selector[addressMap[addressType]]+')').prop('selected', true);
$('#latitude').val(placepopup.geometry.location.lat());
$('#longitude').val(placepopup.geometry.location.lng());
var options =
type: 'popup',
responsive: true,
innerScroll: true,
width:'200px',
title: $t(optionsData.popupHeading),
buttons: [
text: $.mage.__('Show'),
class: 'go-to-shop',
click: function ()
var address = $('#autocomplete');
if (address.val())
var conf = confirm($t('If you enter new location, existed cart will empty.'));
if (conf)
$('.go-to-shop').before($('<span />').addClass('loader'));
$.ajax(
url: optionsData.saveAction,
data:
'address':address.val(),
'lat':address.attr('data-lat'),
'lng':address.attr('data-lng'),
'city':address.attr('data-city'),
'state':address.attr('data-state'),
'country':address.attr('data-country')
,
type: 'POST',
dataType:'html',
success: function (transport)
var response = $.parseJSON(transport);
if (response.status)
location.reload();
else
$('.go-to-shop').before($('<span/>').text(response.msg));
);
else
address.focus();
address.css('border', '1px solid red');
]
;
window.popupConfig = 0;
if (optionsData.isAddressSet == 0)
var cont = $('<div />').append($('#select-address-popup'));
modal(options, cont);
if(!window.popupConf['popupconfig'])
cont.modal('openModal');
window.popupConf['popupconfig'] = 1;
$('#selected-location, .my_location').on('click', function ()
var cont = $('<div />').append($('#select-address-popup'));
modal(options, cont);
if(!window.popupConfig)
cont.modal('openModal');
window.popupConfig = 1;
else
window.popupConfig = 0;
);
$('#autocomplete').keypress(function ()
$(this).css('border','1px solid #c2c2c2');
);
);
return $.affiliate.register;
);
magento2.3.1 google-api
add a comment |
We are working on hyperlocal modules. We are serving to specific cities as of now only. For this, we have enabled the location selection also. But we need to restrict the places from everywhere to Visakhapatnam and Hyderabad locations only.
We have the js like the following:
It's for all areas. But we need only for Visakhapatnam and Hyderabad locations. Apart from these locations, every location has to show the result as no services are available.
** Script:**
/**
* Webkul MpHyperLocal address form script
* @category Webkul
* @package Webkul_MpHyperLocal
* @author Webkul
* @copyright Copyright (c) Webkul Software Private Limited (https://webkul.com)
* @license https://store.webkul.com/license.html
*/
define(
[
"jquery",
"mage/translate",
"Magento_Ui/js/modal/modal",
"googleMapPlaceLibrary"
],
function ($, $t, modal)
"use strict";
$.widget(
'affiliate.register',
_create: function ()
var optionsData = this.options;
var autocomplete;
var address_Type =
locality: 'long_name',
administrative_area_level_1: 'long_name',
country: 'long_name'
;
var addressMap =
locality: 'city',
administrative_area_level_1: 'state',
country: "country"
;
var selector =
city: 1,
state: 2,
country: 3
;
autocomplete = new google.maps.places.Autocomplete(
/** @type !HTMLInputElement */(document.getElementById('autocomplete')),
types: ['geocode']
);
// When the user selects an address from the dropdown, populate the address
// fields in the form.
autocomplete.addListener('place_changed', fillInAddress);
function fillInAddress()
var place = autocomplete.getPlace();
var data = ;
var custAddressType =
'locality' : 'long_name',
'administrative_area_level_1' : 'long_name',
'country' : 'long_name'
;
var addressMap =
'locality' : 'city',
'administrative_area_level_1' : 'state',
'country' : 'country'
;
$('#autocomplete').attr('data-lat', place.geometry.location.lat());
$('#autocomplete').attr('data-lng', place.geometry.location.lng());
var address_components = place.address_components;
for (var i=0; i<address_components.length; i++)
var addressType = address_components[i]['types'][0];
if (typeof custAddressType[addressType] !== 'undefined')
data[addressMap[addressType]] = address_components[i][custAddressType[addressType]];
if (data.city)
$('#autocomplete').attr('data-city', data.city);
else
$('#autocomplete').attr('data-city', '');
if (data.state)
$('#autocomplete').attr('data-state', data.state);
else
$('#autocomplete').attr('data-state', '');
if (data.country)
$('#autocomplete').attr('data-country', data.country);
else
$('#autocomplete').attr('data-country', '');
if ($('#autocompleteform').length > 0)
var autocompleteform;
autocompleteform = new google.maps.places.Autocomplete(
/** @type !HTMLInputElement */(document.getElementById('autocompleteform')),
types: ['geocode']
);
// When the user selects an address from the dropdown, populate the address
// fields in the form.
autocompleteform.addListener('place_changed', fillInPopupAddress);
function fillInPopupAddress()
// Get the place details from the autocomplete object.
var placepopup = autocompleteform.getPlace();
var address = ($('#autocompleteform').val()).split(",");
console.log(placepopup.address_components);
for (var i = 0; i < placepopup.address_components.length; i++)
var addressType = placepopup.address_components[i].types[0];
if (address_Type[addressType])
var val = placepopup.address_components[i][address_Type[addressType]];
if (val == address[0])
console.log(addressMap[addressType]);
$('#address_type>option:eq('+selector[addressMap[addressType]]+')').prop('selected', true);
$('#latitude').val(placepopup.geometry.location.lat());
$('#longitude').val(placepopup.geometry.location.lng());
var options =
type: 'popup',
responsive: true,
innerScroll: true,
width:'200px',
title: $t(optionsData.popupHeading),
buttons: [
text: $.mage.__('Show'),
class: 'go-to-shop',
click: function ()
var address = $('#autocomplete');
if (address.val())
var conf = confirm($t('If you enter new location, existed cart will empty.'));
if (conf)
$('.go-to-shop').before($('<span />').addClass('loader'));
$.ajax(
url: optionsData.saveAction,
data:
'address':address.val(),
'lat':address.attr('data-lat'),
'lng':address.attr('data-lng'),
'city':address.attr('data-city'),
'state':address.attr('data-state'),
'country':address.attr('data-country')
,
type: 'POST',
dataType:'html',
success: function (transport)
var response = $.parseJSON(transport);
if (response.status)
location.reload();
else
$('.go-to-shop').before($('<span/>').text(response.msg));
);
else
address.focus();
address.css('border', '1px solid red');
]
;
window.popupConfig = 0;
if (optionsData.isAddressSet == 0)
var cont = $('<div />').append($('#select-address-popup'));
modal(options, cont);
if(!window.popupConf['popupconfig'])
cont.modal('openModal');
window.popupConf['popupconfig'] = 1;
$('#selected-location, .my_location').on('click', function ()
var cont = $('<div />').append($('#select-address-popup'));
modal(options, cont);
if(!window.popupConfig)
cont.modal('openModal');
window.popupConfig = 1;
else
window.popupConfig = 0;
);
$('#autocomplete').keypress(function ()
$(this).css('border','1px solid #c2c2c2');
);
);
return $.affiliate.register;
);
magento2.3.1 google-api
We are working on hyperlocal modules. We are serving to specific cities as of now only. For this, we have enabled the location selection also. But we need to restrict the places from everywhere to Visakhapatnam and Hyderabad locations only.
We have the js like the following:
It's for all areas. But we need only for Visakhapatnam and Hyderabad locations. Apart from these locations, every location has to show the result as no services are available.
** Script:**
/**
* Webkul MpHyperLocal address form script
* @category Webkul
* @package Webkul_MpHyperLocal
* @author Webkul
* @copyright Copyright (c) Webkul Software Private Limited (https://webkul.com)
* @license https://store.webkul.com/license.html
*/
define(
[
"jquery",
"mage/translate",
"Magento_Ui/js/modal/modal",
"googleMapPlaceLibrary"
],
function ($, $t, modal)
"use strict";
$.widget(
'affiliate.register',
_create: function ()
var optionsData = this.options;
var autocomplete;
var address_Type =
locality: 'long_name',
administrative_area_level_1: 'long_name',
country: 'long_name'
;
var addressMap =
locality: 'city',
administrative_area_level_1: 'state',
country: "country"
;
var selector =
city: 1,
state: 2,
country: 3
;
autocomplete = new google.maps.places.Autocomplete(
/** @type !HTMLInputElement */(document.getElementById('autocomplete')),
types: ['geocode']
);
// When the user selects an address from the dropdown, populate the address
// fields in the form.
autocomplete.addListener('place_changed', fillInAddress);
function fillInAddress()
var place = autocomplete.getPlace();
var data = ;
var custAddressType =
'locality' : 'long_name',
'administrative_area_level_1' : 'long_name',
'country' : 'long_name'
;
var addressMap =
'locality' : 'city',
'administrative_area_level_1' : 'state',
'country' : 'country'
;
$('#autocomplete').attr('data-lat', place.geometry.location.lat());
$('#autocomplete').attr('data-lng', place.geometry.location.lng());
var address_components = place.address_components;
for (var i=0; i<address_components.length; i++)
var addressType = address_components[i]['types'][0];
if (typeof custAddressType[addressType] !== 'undefined')
data[addressMap[addressType]] = address_components[i][custAddressType[addressType]];
if (data.city)
$('#autocomplete').attr('data-city', data.city);
else
$('#autocomplete').attr('data-city', '');
if (data.state)
$('#autocomplete').attr('data-state', data.state);
else
$('#autocomplete').attr('data-state', '');
if (data.country)
$('#autocomplete').attr('data-country', data.country);
else
$('#autocomplete').attr('data-country', '');
if ($('#autocompleteform').length > 0)
var autocompleteform;
autocompleteform = new google.maps.places.Autocomplete(
/** @type !HTMLInputElement */(document.getElementById('autocompleteform')),
types: ['geocode']
);
// When the user selects an address from the dropdown, populate the address
// fields in the form.
autocompleteform.addListener('place_changed', fillInPopupAddress);
function fillInPopupAddress()
// Get the place details from the autocomplete object.
var placepopup = autocompleteform.getPlace();
var address = ($('#autocompleteform').val()).split(",");
console.log(placepopup.address_components);
for (var i = 0; i < placepopup.address_components.length; i++)
var addressType = placepopup.address_components[i].types[0];
if (address_Type[addressType])
var val = placepopup.address_components[i][address_Type[addressType]];
if (val == address[0])
console.log(addressMap[addressType]);
$('#address_type>option:eq('+selector[addressMap[addressType]]+')').prop('selected', true);
$('#latitude').val(placepopup.geometry.location.lat());
$('#longitude').val(placepopup.geometry.location.lng());
var options =
type: 'popup',
responsive: true,
innerScroll: true,
width:'200px',
title: $t(optionsData.popupHeading),
buttons: [
text: $.mage.__('Show'),
class: 'go-to-shop',
click: function ()
var address = $('#autocomplete');
if (address.val())
var conf = confirm($t('If you enter new location, existed cart will empty.'));
if (conf)
$('.go-to-shop').before($('<span />').addClass('loader'));
$.ajax(
url: optionsData.saveAction,
data:
'address':address.val(),
'lat':address.attr('data-lat'),
'lng':address.attr('data-lng'),
'city':address.attr('data-city'),
'state':address.attr('data-state'),
'country':address.attr('data-country')
,
type: 'POST',
dataType:'html',
success: function (transport)
var response = $.parseJSON(transport);
if (response.status)
location.reload();
else
$('.go-to-shop').before($('<span/>').text(response.msg));
);
else
address.focus();
address.css('border', '1px solid red');
]
;
window.popupConfig = 0;
if (optionsData.isAddressSet == 0)
var cont = $('<div />').append($('#select-address-popup'));
modal(options, cont);
if(!window.popupConf['popupconfig'])
cont.modal('openModal');
window.popupConf['popupconfig'] = 1;
$('#selected-location, .my_location').on('click', function ()
var cont = $('<div />').append($('#select-address-popup'));
modal(options, cont);
if(!window.popupConfig)
cont.modal('openModal');
window.popupConfig = 1;
else
window.popupConfig = 0;
);
$('#autocomplete').keypress(function ()
$(this).css('border','1px solid #c2c2c2');
);
);
return $.affiliate.register;
);
magento2.3.1 google-api
magento2.3.1 google-api
edited Jun 24 at 10:44
Teja Bhagavan Kollepara
asked Feb 25 at 11:47
Teja Bhagavan KolleparaTeja Bhagavan Kollepara
2,9994 gold badges20 silver badges51 bronze badges
2,9994 gold badges20 silver badges51 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f263291%2fmagento2-3-1-how-to-limit-the-google-locations-to-specific-area%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f263291%2fmagento2-3-1-how-to-limit-the-google-locations-to-specific-area%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown