MartinZone

programming experiments

 

1 2 3 4 5 6

TGoMaps

image

Use Google Maps service inside your Delphi application. Easy to use but extremely powerful. You will be able to draw markers, polylines, polygons, directions, kmllayers, labels and many more objects on your map. Many map events like mouse coordinates, polygon click, marker drag...and many many more.

TGoMaps LITE

image

A small version of TGoMaps with limitated features, FREE for NON-COMMERCIAL application. Try TGoMaps before buy it.

TSPSolver

image

VCL component to solver the Travelling Salesman Problem,a famous combinatorial optimization problem. 3 different algorithms 2 type of solution (from A to A and from A to B). Available also as DLL library (beta).

MapDown

image

Small Windows application to captures and assembles maps from most important map providers like Google Maps, Yahoor Maps, Microsoft Live Maps and OpenStreetMap. Create georeference maps for most important maps application like OziExplorer, Gps Tuner 5.x, GPSdash and CompeGPS.

MapDown VCL

image

MapDown VCL allow to your application captures and assembles maps from most important map providers like Google Maps, Yahoor Maps, Microsoft Live Maps and OpenStreetMap. Besides you will able to create georeference maps for most important maps application like OziExplorer, Gps Tuner 5.x, GPSdash and CompeGPS.

GoSuite

image

With GoSuite VCL you will use some Google service on your Delphi/C++ Builder application. Full support for Directions (calculates directions between locations), Elevation (provides elevation data for all locations on the surface of the eart) and Geocoding (converting addresses into geographic coordinates and vice versa) services. Use of Google Premier client code.

<< >> Play > Stop

Login






Newsletter

How can I update my application to TGoMaps 1.5.0?

Date added:
Monday, 02 November 2009
Last revised:
Friday, 19 March 2010
Rating:
 
Vote for this:
Good  -  Bad

Answer

TGoMaps 1.5.0 is 99% compatible with the old versions. In the 1.5.0 version I have replace all "Extended" variables with "Double" variables to avoid a bug of Delphi 2006, 2007 and C++ Builder 2006, 2007.

So if you try to replace TGoMaps 1.5.0 in an old application (with a old version of TGoMaps) you will have compile errors.

To fix this problem there are 2 way:

  • If you don't use "Extended" variables into your project you can use Edit->Replace command of Delphi to replace all "Extended" variables with "Double" variables.
  • If you use "Extended" variables into your project you need browser all your code (don't use the Delphi Inspector) to find TGoMaps "Extended" variables and then replace them with "Double" variables.

 

For example you must convert this line:

procedure TMainForm.GoogleMaps1MapMoveEnd(Sender: TObject; CenterLatitude,
CenterLongitude, North, East, South, West: Extended);

into this:

procedure TMainForm.GoogleMaps1MapMoveEnd(Sender: TObject; CenterLatitude,
CenterLongitude, North, East, South, West: double);

Category

About - Privacy Policy - Contact