Puedes checar tambien este componente, lo usan muchos proveedores de componentes que quieren hacer un renderind en tiempode diseño de sus componentes para ver como se ven en web.
Tambein lo usan Thomas de delphi praxis que tambien ha desarrollado una libreria similar a la tuya.
Ademas que los que poseen delphi profesisonal (donde no viene el TWebBrowser) es una opcion viable
No se si sea compatible con FMX perovale la pena intentarlo.
You can know the distance between two points (two LatLng) with the class function ComputeDistanceBetween from TGeometry class defined at GMFunctionsVCL unit. This class function needs three params, a GMMap and two points Origin and Destination. By default, the distance is in meters. If you change the radius, you can change the unit of measure.
If you have SVN access, you can get de lastest version of GMLib (not published yet). In this version I added a demo of TGeometry class functioning. To access to SVN repository, go to GoogleCode.
can i put in tgmap or twebbrowser a strig text? not marker
(ex: string of distance in polygon between 2 points. position of string = midle ol tlinepoint of poligon)
En principio ese paquete debería de estar en un condicional para la compilación, pero si te lo pide, bórralo. Sólo sirve si tienes instalado el navegador DCEF1
Puedes checar tambien este componente, lo usan muchos proveedores de componentes que quieren hacer un renderind en tiempode diseño de sus componentes para ver como se ven en web.
Tambein lo usan Thomas de delphi praxis que tambien ha desarrollado una libreria similar a la tuya.
Ademas que los que poseen delphi profesisonal (donde no viene el TWebBrowser) es una opcion viable
No se si sea compatible con FMX perovale la pena intentarlo.
Puedes checarlo aca:
https://github.com/ghquant/Delphi-EmbeddedWB
saludos
Gracias Francisco, le daré una ojeada a ver qué 😉
How to measure a distance in poligon
more explicit:
How to measure a distance in polygon between 2 points (between 2 Tlinepoint)
Hi Cornestian
You can know the distance between two points (two LatLng) with the class function ComputeDistanceBetween from TGeometry class defined at GMFunctionsVCL unit. This class function needs three params, a GMMap and two points Origin and Destination. By default, the distance is in meters. If you change the radius, you can change the unit of measure.
If you have SVN access, you can get de lastest version of GMLib (not published yet). In this version I added a demo of TGeometry class functioning. To access to SVN repository, go to GoogleCode.
More info about this function at google.maps.geometry.spherical namespace.
Regards
thx, v m , for information
and
thx for code
solution:
procedure TForm2.Button4Click(Sender: TObject);
var
orig, dest:Tlatlng;
r: real;
begin
orig:= gp.Items[0].Items[0].GetLatLng ;
dest:= gp.Items[0].Items[1].GetLatLng ;
r:= GMFunctionsVCL.TGeometry.ComputeDistanceBetween(gm,orig, dest, -1);
showmessage(floattostr(r))
end;
where gp it’s a tgmpolygon
Thanks for this tip Cornestian
Regards
can i put in tgmap or twebbrowser a strig text? not marker
(ex: string of distance in polygon between 2 points. position of string = midle ol tlinepoint of poligon)
Quiero instalar GMLib para XE2 y tengo problemas de instalación. No encuentra DCEF_XE2
un saludo
Lo estoy haciendo con las opciones por defecto
Buenas,
En principio ese paquete debería de estar en un condicional para la compilación, pero si te lo pide, bórralo. Sólo sirve si tienes instalado el navegador DCEF1
Saludos
hello dear admin
i install GMLib_DXE2_FMX.bpl sucsesfully but when i start firemonky app im just have TGMinfowindow under googlemap component
Hi nima
GMLib need a browser component. Into FMX you don’t have any browser. For this reason GMLib don’t show any component.
Regards