Z adresy www.poi.cz vyberte kategorii, která vás zajimá. Stáhněte POI soubor, třeba jako GPX. V programu PoiEdit(www.poiedit.com) uložte jako asc a přidejte do navigace. Toť vše.
Mezi nejstahovanější patří radary, restaurace, nebezpečná místa, čerpací stanice, free wifi, hrady, zámky, nemocnice, městská policie atd.
středa, srpna 20, 2008
neděle, srpna 10, 2008
GeoGet 2 a export pro ViaMichelin x960
Navigace umožňuje zadat uživatelské POI a také na ně upozorňovat. Upravil jsem jedno dostupné exportní makro z Geogetu a vytvořil export dle manuálu k x960.
Byla tam chybka.(Bylo prohozeno Lat a Lon)
Teď už vše jede.
Soubor via.gge.pas:
//Geoget 2
function ExportExtension: string;
begin
result := 'asc';
end;
function ExportDescription: string;
begin
result := 'viaMichelin File';
end;
function ExportHeader: string;
begin
Result := ';viaMichelin' + CRLF;
end;
function ExportFooter: string;
begin
result := ';end';
end;
function ExportPoint: string;
var
s: string;
begin
s := GC.Lon + ', '+ GC.Lat + ', "';
s := s + GC.IDTag + ' ';
s := s+ ReplaceString(UtfToAscii(GC.Name), ',', ' ') + '"';
Result := s + CRLF;
end;
Byla tam chybka.(Bylo prohozeno Lat a Lon)
Teď už vše jede.
Soubor via.gge.pas:
//Geoget 2
function ExportExtension: string;
begin
result := 'asc';
end;
function ExportDescription: string;
begin
result := 'viaMichelin File';
end;
function ExportHeader: string;
begin
Result := ';viaMichelin' + CRLF;
end;
function ExportFooter: string;
begin
result := ';end';
end;
function ExportPoint: string;
var
s: string;
begin
s := GC.Lon + ', '+ GC.Lat + ', "';
s := s + GC.IDTag + ' ';
s := s+ ReplaceString(UtfToAscii(GC.Name), ',', ' ') + '"';
Result := s + CRLF;
end;
Přihlásit se k odběru:
Příspěvky (Atom)