Quantcast
Channel: Microcontrollers
Viewing all articles
Browse latest Browse all 4922

GSM , GPS and Arduino

$
0
0
hi
my project is use GSM, GPS and Arduino for tracking system , how I can change the bing map to google map?


Code (Javascript):
  1.         strcpy(message, "http://www.bing.com/maps?");
  2.         strcat(message, "lvl=17&style=r&sp=point.");
  3.         dtostrf(gps.location.lat(), 1, 6, latitude);
  4.         strcat(message,latitude);
  5.         strcat(message,"_");
  6.         dtostrf(gps.location.lng(), 1, 6, longitude);
  7.         strcat(message,longitude);

Viewing all articles
Browse latest Browse all 4922

Trending Articles