Composant Delphi / Google Maps / OpenStreetMap / Leaflet  / Mappilary / Native Maps 100% Delphi 0% WebBrowser 0% Javascript

Map Type

you are here :TECMap

API

TECMap allows you to use either the Google Maps API , the API CloudMade , the API Leaflet and l'API OpenMapQuest to display your cards, you make the switch by setting the property Mapapi to apiGoogle or apiCloudMade or apiLeaflet or apiOpenMapQuest

The SSL property lets you use a secure connection for the moment only the Google API provides this functionality.

ApiVersion property of type string allows you to specify the version of the API that you wish to use, it only works for Google, if you do not tell is the latest version to be used.

// Delphi map component ECMap

// find the distance in km by road between Tarbes and Lourdes via Aureilhan
dKm := map.DistanceRouteByAdress('Tarbes','Aureilhan|Lourdes');

Adresses := TStringList.create;
try

Adresses.add('Tarbes');
Adresses.add('Aureilhan');
Adresses.add('Séméac');
Adresses.add('Lourdes');

// create route Tarbes/Lourdes via Aureilhan and Séméac
map.AddRouteByAdress(Adresses);

finally
Adresses.free;
end;

This can be useful in case of bug in some versions.

The API change triggers events OnBeforeChangeMapApi and OnAfterChangeMapApi.

When the card is ready OnLoad event is fired, you can also tune into OnBeforeLoad if you want to change the connection url to the API and add code to connect javascript libraries

You can recharge a card and its contents by calling the Reload, useful to force a release of memory, and OnAfterReload OnBeforeReload events are available.

You do not have to worry about backing up the card, it will be fully recharged, excluding the results of a search places

Change properties Mapapi, apiVersion and SSL triggers a reload.

10

StreetView with memory leaks, until google fixes them, reload is call automatically every 1000 views.

TECMap will hold closer to the apis, please read their documentation.


In addition to the license that I invite you to read , the main differences are the lack of SSL, view satellite, 3D view of Panoramio , the DistanceMatrix and StreetView in the API CloudMade.

The differences do not cause error in the component TECMap, using an unsupported property has simply no effect, it is possible that future developments following apis deficiencies are corrected.

You can change the API at any time without loss of data, excluding the results of a search for places.

11

Card Type

OpenMapQuest supports classic map, view satellite and hybrid views.

Fig. 17 OpenMapQuest
Fig. 17 OpenMapQuest

CloudMade and Leaflet support classic map.

Fig. 18 Carte CloudMade
Fig. 18 Carte CloudMade

You have also maps OpenMapStreet, Mapnik, Osmarender, CycleMap and MapQuest (classic, satellite and hybrid )

Fig. 19 Carte OpenMapStreet Mapnik
Fig. 19 Carte OpenMapStreet Mapnik
Fig. 20 Carte OpenMapStreet A render
Fig. 20 Carte OpenMapStreet A render
Fig. 21 OpenMapStreet CycleMap
Fig. 21 OpenMapStreet CycleMap
Fig. 22 OpenMapStreet MapQuest
Fig. 22 OpenMapStreet MapQuest

With the Google API you have the classical map, the satellite view with or without captions, a view highlighted, OpenMapStreet Mapnik, OpenMapStreet A Render, CycleMap and MapQuest


Fig. 23 Google : Type Roadmap
Fig. 23 Google : Type Roadmap
Fig. 24 Google : Type Hybrid
Fig. 24 Google : Type Hybrid
Fig. 25 Google : Type TERRAIN
Fig. 25 Google : Type TERRAIN

You change your view through the property MapTypeID with value as possible mtROADMAP, mtSATELLITE,mtHYBRID, mtTERRAIN, mtMAPNIK, mtOSMARENDER, mtMapQuest and mtCYCLEMAP

For satellite images (mtSATELLITE, mtHYBRID) Google Map begins to develop at 45 ° views, you can activate it through the property Tilt

 

This is not implemented everywhere, see the documentation for more info google

When changing the type of card it is by code or directly on the map in detail, the event OnChangeMapTypeId (Sender: TObject) is triggered.

With the Google API you have also seen StreetView and EarthView

12

Styles

The Styles property allows you to reset the display of the map.


Visit the site of google maps for more information on the syntax of the styles.

Google puts at your disposal a wizard to create your styles

You simply assign to map.Styles the JSON string.

Fig. 26 Get the styles to the JSON format

Fig. 27 The JSON format styles

Remove Points of interest Google Maps

You can use styles to remove all or some poi on your card

Fig. 28 POI

This example shows you how to delete all poi except the poi.park

map.styles := '[{ featureType: "poi",elementType: "all", stylers: [{visibility: "off" } ]}'+
',{featureType: "poi.park",elementType: "all",stylers:[{visibility: "on" }, ] } ]';

Fig. 29 Only poi-park

Voir la documentation de Google pour toutes les valeurs featureType

Under CloudeMade the Styles property contains an identifier, you can go visit the library of available styles or create your

Fig. 30 CloudMade style editor

2, 3, 8, 997, 998, 999 allow to use styles, example of use map.Styles:='999'

OpenMapQuest does not support styles

13
go to page
© 2016 ESCOT-SEP Christophe - Made width Help&Web - RSS - Google+