mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
11 lines
437 B
C++
11 lines
437 B
C++
#include "GoogleMaps.h"
|
|
|
|
GUI_APP_MAIN {
|
|
// Following key was obtained for U++ project, please get your owen key if you want to use
|
|
// GoogleMaps API here (it is free): http://code.google.com/intl/cs/apis/maps/signup.html
|
|
SetGoogleMapsKey("ABQIAAAAXHmSFgmVIbMZDJ5RhfPINBSBetkRueiarolywVmVT7jJWZRGvBQFIvrtty50ivBLt4YApjpEVXW8Hw");
|
|
|
|
Pointf p(0, 51.477222);
|
|
if(MapDlg(p))
|
|
Exclamation("Marker position " + FormatGPS(p));
|
|
}
|