Using Google Maps API in C++

Is it possible to run Google Maps API in C++? I would like to use the functions that are within Google Maps in my C++ program.
To my knowledge, the Google Maps API is meant to be run client-side, not server side. When a website embeds Google Maps, the user interacts with the embed map and the map can send information back to the website server, but cannot be actively controlled by the server, since it is controlled by Google. (Someone correct me if I am wrong please!)
Last edited on
It is possible. You certainly need a library (web browser engine):

https://en.wikipedia.org/wiki/Web_browser_engine


Specially blink and gecko. Both are C++.
Topic archived. No new replies allowed.