Namespaces
Variants
Actions
(Difference between revisions)

Content Handling with Maps API for Java ME

Jump to: navigation, search
(Symbianyucca -)
m (Jasfox - add monospacing.)
Line 1: Line 1:
 
[[Category:Java ME]][[Category:Location]][[Category:Nokia Maps]][[Category:Code Examples]]
 
[[Category:Java ME]][[Category:Location]][[Category:Nokia Maps]][[Category:Code Examples]]
{{Abstract| This article explains how to add different types of content to the Map when using [http://www.developer.nokia.com/Develop/Maps/Maps_API_for_Java_ME/ Maps API for Java ME] API. Also removing and other functionalities included with content are also illustrated in this article.}}
+
{{Abstract| This article explains how to add different types of content to the Map when using [http://www.developer.nokia.com/Develop/Maps/Maps_API_for_Java_ME/ Maps API for Java ME] API. Also removing and other functions included with content are also illustrated in this article.}}
  
 
{{ArticleMetaData
 
{{ArticleMetaData
Line 33: Line 33:
 
The [http://www.developer.nokia.com/Develop/Maps/Maps_API_for_Java_ME/ Maps API for Java ME] allows to easily embed Nokia Maps service into Java ME applications.  
 
The [http://www.developer.nokia.com/Develop/Maps/Maps_API_for_Java_ME/ Maps API for Java ME] allows to easily embed Nokia Maps service into Java ME applications.  
  
Markers are discussed already in [http://www.developer.nokia.com/Community/Wiki/Adding_Markers_to_the_Map_with_Maps_API_for_Java_ME Adding Markers to the Map with Maps API for Java ME] article, thus this article will concentrate on other types of content that can be added to the map.
+
{{Icode|MapMarkers}} have already been discussed  in the [http://www.developer.nokia.com/Community/Wiki/Adding_Markers_to_the_Map_with_Maps_API_for_Java_ME Adding Markers to the Map with Maps API for Java ME] article, thus this article will concentrate on other types of content that may be added to the map.
  
 
== Adding content to the map ==
 
== Adding content to the map ==
Addition to the Markers following content types have class definition included with the Java ME Maps API:
+
In addition to {{Icode|MapMarkers}} the following content types have class definition included with the Java ME Maps API:
* Polygon,
+
* {{Icode|Polygon}},
* Polyline,
+
* {{Icode|Polyline}},
* Circle, and
+
* {{Icode|Circle}}, and
* Rectangle
+
* {{Icode|Rectangle}}
  
Polylines can be constructed by using MapFactory, the constructor takes only one argument, which is array of points for the polyline. after construction you can use the methods provide by the MapPolyline class to modify it, for example you can change the color of the line with setColor method.
+
{{Icode|Polylines}} can be constructed by using the {{Icode|MapFactory}}, the constructor takes only one argument, which is an array of points for the {{Icode|Polyline}}. after construction you can use the methods provide by the {{Icode|MapPolyline}} class to modify it, for example you can change the color of the line with {{Icode|setColor()}} method.
 
<code java>
 
<code java>
 
GeoCoordinate[] polylinCoord = new GeoCoordinate[4];
 
GeoCoordinate[] polylinCoord = new GeoCoordinate[4];
Line 56: Line 56:
 
</code>
 
</code>
  
Similarly as Polylines, polygons are constructed with MapFactory, and the constructor also takes the array of points:
+
In a similar manner to {{Icode|Polylines}}, {{Icode|Polygons}} are constructed via the  {{Icode|MapFactory}}, and the constructor also takes the array of points:
 
<code java>
 
<code java>
 
GeoCoordinate[] polygonCoord = new GeoCoordinate[3];
 
GeoCoordinate[] polygonCoord = new GeoCoordinate[3];
Line 68: Line 68:
 
mapCanvas.getMapDisplay().addMapObject(polygon);
 
mapCanvas.getMapDisplay().addMapObject(polygon);
 
</code>
 
</code>
Circle and rectangle are basically special polygons helper classes. For circle the constructor takes two arguments, which are radius and center. And for the rectangle the only argument taken is bounding box for the rectangle, which is basically area defined by two points, left top point and the bottom right point.
+
The {{Icode|Circle}} and {{Icode|rectangle}} are basically special polygons helper classes. For the {{Icode|Circle}} the constructor takes two arguments, which are the {{Icode|radius}} and {{Icode|center}}. And for the {{Icode|Rectangle}} the only argument taken is bounding box for the rectangle, which is basically area defined by two points, left top point and the bottom right point.
 
<code java>
 
<code java>
 
MapCircle myCircle = mapCanvas.getMapFactory().createMapCircle(5000.0,new GeoCoordinate(60.30, 24.70,0));
 
MapCircle myCircle = mapCanvas.getMapFactory().createMapCircle(5000.0,new GeoCoordinate(60.30, 24.70,0));
Line 76: Line 76:
 
</code>
 
</code>
 
== Z-ordering content ==
 
== Z-ordering content ==
The Z-ordering content is handled simply by using the setzIndex method for each content that needs to be ordered. Giving smaller value in setzIndex will make the content to be drawn under the content that has higher values.
+
The Z-ordering content is handled simply by using the {{Icode|setzIndex()}} method for each content that needs to be ordered. Giving a lower value in {{Icode|setzIndex()}}  will make the content to be drawn under the content that has higher values.
For example if you want myCircle to be drawn on top of the rectangle, you can do it with following code:
+
For example if you want {{Icode|myCircle}} to be drawn on top of the {{Icode|rectangle}}, you can do it with following code:
 
<code java>
 
<code java>
 
int markerZ = 1;
 
int markerZ = 1;
 
int polyZ = 0;
 
int polyZ = 0;
 
myCircle.setzIndex(markerZ);
 
myCircle.setzIndex(markerZ);
rectnagle.setzIndex(polyZ);
+
rectangle.setzIndex(polyZ);
 
</code>
 
</code>
 
== Hiding content without deleting them ==
 
== Hiding content without deleting them ==
Each content item can be hidden by calling setVisible method with Boolean argument set to false value:
+
Each content item can be hidden by calling the {{Icode|setVisible()}}  method with a {{Icode|Boolean}} argument set to {{Icode|false}} :
 
<code java>
 
<code java>
 
boolean vissible = !rectnagle.isVisible();
 
boolean vissible = !rectnagle.isVisible();
Line 91: Line 91:
 
</code>
 
</code>
 
== Removing content ==
 
== Removing content ==
Each content added to the Map display with addMapObject method can be also removed by using removeMapObject method.
+
Each content added to the Map display with the {{Icode|addMapObject()}} method can be also removed by using the  {{Icode|removeMapObject()}} method.
 
<code java>
 
<code java>
 
mapCanvas.getMapDisplay().addMapObject( myCircle );
 
mapCanvas.getMapDisplay().addMapObject( myCircle );
 
</code>
 
</code>
Thus if for example myCircle object is added with the code above, it can be later on removed from the Map by using the code shown below.
+
Thus, if for example, {{Icode|myCircle}}  is added with the code above, it can be later on removed from the Map by using the code shown below.
 
<code java>
 
<code java>
 
mapCanvas.getMapDisplay().removeMapObject(myCircle);
 
mapCanvas.getMapDisplay().removeMapObject(myCircle);
Line 106: Line 106:
 
== Summary ==
 
== Summary ==
  
The [https://projects.developer.nokia.com/LBSPJME/wiki Java ME Location API] offers rich functionalities that allows to integrate all the main Ovi Maps features in a Java ME application, with just a few lines of code.
+
The [http://www.developer.nokia.com/Develop/Maps/Maps_API_for_Java_ME/ Maps API for Java ME] offers rich functionality which allows the integration all the main Nokia Maps features in a Java ME application, with just a few lines of code.

Revision as of 12:28, 18 April 2012

This article explains how to add different types of content to the Map when using Maps API for Java ME API. Also removing and other functions included with content are also illustrated in this article.

SignpostIcon HereMaps 99.png
SignpostIcon Nokia Asha 52.png
Article Metadata

Compatibility
Platform(s): Java ME
Dependencies: Maps API for Java ME

Article
Created: symbianyucca (27 Feb 2012)
Last edited: jasfox (18 Apr 2012)


Contents

Introduction

MapContent.png

The Maps API for Java ME allows to easily embed Nokia Maps service into Java ME applications.

MapMarkers have already been discussed in the Adding Markers to the Map with Maps API for Java ME article, thus this article will concentrate on other types of content that may be added to the map.

Adding content to the map

In addition to MapMarkers the following content types have class definition included with the Java ME Maps API:

  • Polygon,
  • Polyline,
  • Circle, and
  • Rectangle

Polylines can be constructed by using the MapFactory, the constructor takes only one argument, which is an array of points for the Polyline. after construction you can use the methods provide by the MapPolyline class to modify it, for example you can change the color of the line with setColor() method.

GeoCoordinate[] polylinCoord = new GeoCoordinate[4];
polylinCoord[0] = new GeoCoordinate(60.27, 24.81, 0);
polylinCoord[1] = new GeoCoordinate(60.35, 24.70, 0);
polylinCoord[2] = new GeoCoordinate(60.19, 24.57, 0);
polylinCoord[3] = new GeoCoordinate(60.27, 24.81, 0);
 
MapPolyline polyline = mapCanvas.getMapFactory().createMapPolyline(polylinCoord);
polyline.setColor(0xFF43A5FF);
 
mapCanvas.getMapDisplay().addMapObject(polyline)

In a similar manner to Polylines, Polygons are constructed via the MapFactory, and the constructor also takes the array of points:

GeoCoordinate[] polygonCoord = new GeoCoordinate[3];
polygonCoord[0] = new GeoCoordinate(60.22, 24.81, 0);
polygonCoord[1] = new GeoCoordinate(60.30, 24.70, 0);
polygonCoord[2] = new GeoCoordinate(60.14, 24.57, 0);
 
MapPolygon polygon = mapCanvas.getMapFactory().createMapPolygon(polygonCoord);
polygon.setColor(0xAA43A51B);
 
mapCanvas.getMapDisplay().addMapObject(polygon);

The Circle and rectangle are basically special polygons helper classes. For the Circle the constructor takes two arguments, which are the radius and center. And for the Rectangle the only argument taken is bounding box for the rectangle, which is basically area defined by two points, left top point and the bottom right point.

MapCircle myCircle = mapCanvas.getMapFactory().createMapCircle(5000.0,new GeoCoordinate(60.30, 24.70,0));
 
GeoBoundingBox rectnaglebox = new GeoBoundingBox(new GeoCoordinate(60.35, 24.60,0), new GeoCoordinate(60.25, 24.80,0));
MapRectangle rectnagle = mapCanvas.getMapFactory().createMapRectangle(rectnaglebox);

Z-ordering content

The Z-ordering content is handled simply by using the setzIndex() method for each content that needs to be ordered. Giving a lower value in setzIndex() will make the content to be drawn under the content that has higher values. For example if you want myCircle to be drawn on top of the rectangle, you can do it with following code:

int markerZ = 1;
int polyZ = 0;
myCircle.setzIndex(markerZ);
rectangle.setzIndex(polyZ);

Hiding content without deleting them

Each content item can be hidden by calling the setVisible() method with a Boolean argument set to false :

boolean vissible = !rectnagle.isVisible();
rectnagle.setVisible(vissible);

Removing content

Each content added to the Map display with the addMapObject() method can be also removed by using the removeMapObject() method.

mapCanvas.getMapDisplay().addMapObject( myCircle );

Thus, if for example, myCircle is added with the code above, it can be later on removed from the Map by using the code shown below.

mapCanvas.getMapDisplay().removeMapObject(myCircle);

Resources

Full source code illustrating usage for map content types discussed in this article is available at: File:Java MapContent.zip

Summary

The Maps API for Java ME offers rich functionality which allows the integration all the main Nokia Maps features in a Java ME application, with just a few lines of code.

287 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved