Hallo
Ich verwende dafür ein Aktionsskript . In den wird " Lat " und " Lng " abgefragt und dann in der GPS Feld ( B ) geschriben .dafür braucht es nur 3 Zeilen Code
var lat = arg("Lat")
var lon = arg("Lng")
entry().set("B",lat+","+lon)
und das Argumente 2 Text felder mit Namen " Lat " , " Lng " .Bei der Eingabe muss mit eine Punkt ( . ) getrennt werden .
Hello
I'm using an action script for this. It queries "Lat" and "Lng" and then writes them to the GPS field (B). This only requires three lines of code:
var lat = arg("Lat")
var lon = arg("Lng")
entry().set("B",lat+","+lon)
and the arguments are two text fields named "Lat" and "Lng". The input must be separated by a period (.).
Ernst