Qfield GPS

can someone create a qfield plugin that allows a GPS course line, the ability to use routes and waypoint alarms


Imported from GitHub discussion by @MikeC1976 on 2024-08-15T22:49:38Z

I don’t use a plugin but I created an hyperlink in each feature form to open Google Maps.

In case it can help, here are the steps:

Create a field in QGIS and select “attachment” in the available widgets.

Then apply the following formula

Google Itinerary from current location:
concat( ‘Google Maps’, y(transform($geometry, layer_property(layer, ‘crs’),‘EPSG:4326’)), ‘%2C’, x(transform($geometry, layer_property(layer, ‘crs’),‘EPSG:4326’)), ‘&travelmode=driving’)

Point Google Maps:
concat( 'https://maps.google.com?q= ',y(transform($geometry, layer_property(layer, ‘crs’),‘EPSG:4326’)), ‘%2C’, x(transform($geometry, layer_property(layer, ‘crs’),‘EPSG:4326’)), ‘&zoom=19&t=h’)


Imported from GitHub comment by @MMR100 on 2024-08-23T07:33:39Z