ultimatepp/examples/GoogleMaps/Main.cpp
cxl c55a879756 Typo fix
git-svn-id: svn://ultimatepp.org/upp/trunk@2038 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2010-02-09 15:00:17 +00:00

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));
}