I am trying this procedure
create procedure sp_DBR_GoogleMaps_Paris()
BEGIN select 'dbr.googlemaps', 'address', 'Paris sightseeing', 400, 400;
select 'la Tour Eiffel', 'la Tour Eiffel'
union
select 'Musee du Louvre', 'Musee du Louvre';
END
from the online demo but I get the following error:
Google Maps was not able to locate following addresses:
- la Tour Eiffel
- Musee du Louvre
Interestingly if I try with coordinates it works fine:
select 'dbr.googlemaps', 'coordinates', 'French sightseeing', 400, 400; select 48.858863, 2.294362, 'la Tour Eiffel'
union
select 48.861397, 2.335432, 'Musee du Louvre