worldmap-save: don't use an API key

The Google Maps API V3 *does* require a key if one needs to generate
a lot of payed trafic and monitor said trafic, otherwise it doesn't:
https://stackoverflow.com/a/8785844

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Lubomir I. Ivanov 2017-07-31 02:17:34 +03:00 committed by Dirk Hohndel
parent 916d4b8cce
commit 5b28fcea3a

View file

@ -19,7 +19,7 @@
char *getGoogleApi()
{
/* google maps api auth*/
return "https://maps.googleapis.com/maps/api/js?key=AIzaSyDzo9PWsqYDDSddVswg_13rpD9oH_dLuoQ";
return "https://maps.googleapis.com/maps/api/js?";
}
void writeMarkers(struct membuffer *b, const bool selected_only)