Deprecated: Assigning the return value of new by reference is deprecated in /home2/vgps01/public_html/j2megps.com/blog/wp-settings.php on line 472

Deprecated: Assigning the return value of new by reference is deprecated in /home2/vgps01/public_html/j2megps.com/blog/wp-settings.php on line 487

Deprecated: Assigning the return value of new by reference is deprecated in /home2/vgps01/public_html/j2megps.com/blog/wp-settings.php on line 494

Deprecated: Assigning the return value of new by reference is deprecated in /home2/vgps01/public_html/j2megps.com/blog/wp-settings.php on line 530
J2ME GPS | Archive | Data Structures

Archive | Data Structures RSS feed for this section

Data structure design for vector map

16. March 2009

1 Comment

Vector map’s basic objects: Vector map usually consists of 2 types of objects: render objects and routing objects. Render objects: Countries Cities/Provinces Points Polylines Polygons Here is the data structure model that you can use for your mobile map application: Data structure for Country: String name; int x; (Longitude (32bit)) int y; (Latitude (32bit)) short numPoint; (16bit) – follow by array of x and y different to define boundaries [...]

Continue reading...