I want to display my current location and get location coordinates to search nearby. Starting with the code below to display my location on the map, but its not working.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Ext.define('PPL.App', {extend : 'Ext.Map',
layout : 'fit',
config : {
items : [{
xtype : 'map',
useCurrentLocation : false
}]
}
});