Jump to content

Search the Community

Showing results for tags 'unifsmap'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 4 results

  1. Components Delphi for uniGUI https://store.falconsistemas.com.br 💙 [01] - FSiGrowl (Web e Mobile) - (Componente de Dialog) [02] - FSKendoUI (Web e Mobile) - (Componente de gráficos utilizando a API do KendoUI) [03] - FSMask (Web) - (Edit com alteração de mascara em tempo de execução) [04] - FSButton (Web) - (Componente de Botão personalizável) [05] - FSMap (Web e Mobile) - (Google Maps) [06] - FSColorPicker (Web) - (Componente de seletor de cores) [07] - FSEdit (Web) - (Edit com suporte a força de senhas) [08] - FSToggle (Web e Mobile) - (Componente de Toggle personalizável) [09] - FSMenuButton (Web) - (Componente de botão com menu) [10] - FSComboBox (Web) - (ComboBox com suporte a ValueID) [11] - FSCalcEdit (Web) - (Componente de Calculadora) [12] - FSGoogleChart (Web e Mobile) - (Componente de gráficos utilizando a API Google Charts) [13] - FSTheme (Web) - (Componente de temas para o uniGui) [14] - FSToast (Web e Mobile) - (Componente de Dialog) [15] - FSConfirm (Web e Mobile) - (Componente de Dialog) [16] - FSPopup (Web) - (Componente de Popup) [17] - FSQrCode (Web e Mobile) - (Gerador de QrCode) [18] - FSKeys (Web e Mobile) - (Secret Keys para os componentes da Google) [19] - FSMultiUpload (Web) - (Componente de Upload e MultiUpload) [20] - FSSignature (Web e Mobile) NEW - (Componente de Assinatura - Signature Pad) [21] - FSPix (Web e Mobile) NEW - (Gerador de QrCode PIX em Delphi) [22] - FSHighCharts (Web e Mobile) NEW - (Componente de gráficos utilizando a API do HighCharts) [23] - FSCamera (Web) NEW - (Componente de acesso a câmera (webcam) compátivel com o Google Chrome) [24] - FSQrCodeScanner (Web e Mobile) NEW - (Componente de leitura de QrCode, Barcode e mais 15 formatos) For support send e-mail to suporte@falconsistemas.com.br Components for Delphi | uniGUI, IntraWeb, FMX, VCL : https://components.falconsistemas.com.br
  2. Good day! Since the Falcoln Components component developer does not respond in any way to my questions, which I asked both through private messages and via email, I receive complete ignorance and do not receive answers to questions important to me (it is very disappointing that as soon as you buy components, then the developer no longer cares about you and your questions and the developer does not want to provide support, does it, @Marlon Nardi?) Question: Why values of distance and duration calculate only from point A to point B, when I creating multi route? As result, I get not right value: But, I need get values of duration and distance from point A to point I. Code: procedure TUniFormPreviewMap.UniFSMap1AjaxEvent(Sender: TComponent; EventName: string; Params: TUniStrings); var vJSON: string; Obj: TJsonObject; vI: Integer; begin if EventName = 'fs_directions_changed' then begin vJSON := Params.Values['directionsDisplay']; Obj := TJsonBaseObject.Parse(vJSON) as TJsonObject; try lblDistance.Text := Obj.S['distancetext']; lblDuration.Text := Obj.S['durationtext']; ClientDataSet1.CreateDataSet; ClientDataSet1.DisableControls; try ClientDataSet1.EmptyDataSet; for vI := 0 to Obj.A['steps'].Count - 1 do begin ClientDataSet1.Append; ClientDataSet1.FieldByName('sequence').AsInteger := vI + 1; ClientDataSet1.FieldByName('enc_lat_lngs').AsString := Obj.A['steps'].Values[vI].S['enc_lat_lngs']; ClientDataSet1.FieldByName('instructions').AsString := Obj.A['steps'].Values[vI].S['instructions']; ClientDataSet1.FieldByName('distance_value').AsInteger := Obj.A['steps'].Values[vI].I['distancevalue']; ClientDataSet1.FieldByName('distance_text').AsString := Obj.A['steps'].Values[vI].S['distancetext']; ClientDataSet1.FieldByName('duration_value').AsInteger := Obj.A['steps'].Values[vI].I['durationvalue']; ClientDataSet1.FieldByName('duration_text').AsString := Obj.A['steps'].Values[vI].S['durationtext']; ClientDataSet1.FieldByName('startlocation_lat').AsString := Obj.A['steps'].Values[vI].O['startlocation'].S['lat']; ClientDataSet1.FieldByName('startlocation_lng').AsString := Obj.A['steps'].Values[vI].O['startlocation'].S['lng']; ClientDataSet1.FieldByName('endlocation_lat').AsString := Obj.A['steps'].Values[vI].O['endlocation'].S['lat']; ClientDataSet1.FieldByName('endlocation_lng').AsString := Obj.A['steps'].Values[vI].O['endlocation'].S['lng']; ClientDataSet1.Post; end; finally ClientDataSet1.First; ClientDataSet1.EnableControls; end; finally Obj.Free; end; end; end;
  3. Good day! Since the Falcoln Components component developer does not respond in any way to my questions, which I asked both through private messages and via email, I receive complete ignorance and do not receive answers to questions important to me (it is very disappointing that as soon as you buy components, then the developer no longer cares about you and your questions and the developer does not want to provide support, does it, @Marlon Nardi?) I'm understand that "Distance Text" calculate like that: Distance Text=Distance Value / 1000. And how about Duration Text? How she calculate? How getting "3 ч. 2 мин." from 10924?
  4. Good day! Since the Falcoln Components component developer does not respond in any way to my questions, which I asked both through private messages and via email, I receive complete ignorance and do not receive answers to questions important to me (it is very disappointing that as soon as you buy components, then the developer no longer cares about you and your questions and the developer does not want to provide support, does it, @Marlon Nardi?) So, actually a question for those who may have come across this when working with UniFSMap. Question: Is it possible create red line for town or area, when I create route between two point, as like this picture?
×
×
  • Create New...