Skip to content

Commit

Permalink
Examples updated to version 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-eremenko committed Feb 24, 2017
1 parent 5cc2641 commit 7b2dd8f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/com/teamdev/jxmaps/demo/AboutDialog.java
Expand Up @@ -23,7 +23,7 @@ public AboutDialog() {

public static void initHandler(Component frame) {
parentFrame = frame;
com.apple.eawt.Application.getApplication().setDockIconImage(Toolkit.getDefaultToolkit().getImage(SampleDescriptor.class.getResource("res/jxmaps32x32.png")));
com.apple.eawt.Application.getApplication().setDockIconImage(Toolkit.getDefaultToolkit().getImage(SampleDescriptor.class.getResource("res/jxmaps256x256.png")));
com.apple.eawt.Application.getApplication().setAboutHandler(new com.apple.eawt.AboutHandler() {
@Override
public void handleAbout(com.apple.eawt.AppEvent.AboutEvent aboutEvent) {
Expand Down
1 change: 1 addition & 0 deletions src/com/teamdev/jxmaps/demo/JxMapsDemo.java
Expand Up @@ -62,6 +62,7 @@ private void initAndDisplayUI() {
new SampleDescriptor("ic_places_sample", "Places Search", "Find places near a given point.", PlacesSearchExample.class),
new SampleDescriptor("ic_polygon_sample", "Polygon", "Draw polygons on the map.", PolygonExample.class),
new SampleDescriptor("ic_polyline_sample", "Polyline", "Draw a custom route on the map.", PolylineExample.class),
new SampleDescriptor("ic_traffic_sample", "Traffic Layer", "Display information about traffic on the map.", TrafficLayerExample.class),
new SampleDescriptor("ic_events_sample", "Events", "The pane shows you events that are triggered when you interact with the map.", EventsExample.class),
};

Expand Down
1 change: 0 additions & 1 deletion src/com/teamdev/jxmaps/examples/StreetViewExample.java
Expand Up @@ -26,7 +26,6 @@
*/
public class StreetViewExample extends MapView {
public StreetViewExample() {
super(true);

// Setting of a ready handler to MapView object. onMapReady will be called when map initialization is done and
// the map object is ready to use. Current implementation of onMapReady customizes the map object.
Expand Down

0 comments on commit 7b2dd8f

Please sign in to comment.