I want to embed google maps on a JPanel. Since I want features like zoom-in/out, using static images isn\'t feasible.
To achieve this, I\'ll probably need to embed a
You can use JxMaps library to complete this task. It has Swing component which can be simply embedded to JPanel.
JPanel
void createMapView(JPanel parent) { MapView view = new MapView(); parent.add(view); }
This library has comprehensive set of classes for working with Google Maps from java.