Search the Community
Showing results for tags 'unifsmap'.
-
π Falcon Store β Delphi Components for uniGUI π Official Store: https://store.falconsistemas.com.br Falcon Store provides a wide collection of Delphi components with support for the uniGUI framework (Web & Mobile). Our mission is to deliver productivity, practicality, and modern features for Delphi developers working on web applications. π¦ Available Components Dialogs & Notifications [01] iGrowl (Web & Mobile) β Modern notification system. [02] Toast (Web & Mobile) β Quick toast-style messages. [03] Confirm (Web & Mobile) β Confirmation dialog box. [04] Popup (Web) β Customizable popup content. Charts & Data Visualization [05] KendoUI (Web & Mobile) β Charts using KendoUI API. [06] Google Charts (Web & Mobile) β Charts powered by Google Charts API. [07] HighCharts (Web & Mobile) β Advanced charting with HighCharts API. Input Fields & Controls [08] Edit Mask (Web) β Input field with dynamic mask change. [09] Edit (Web) β Input field with password strength check. [10] Button (Web) β Fully customizable button. [11] Toggle (Web & Mobile) β Custom toggle switch. [12] Menu Button (Web) β Button with dropdown menu. [13] ComboBox (Web) β ComboBox with ValueID support. [14] CalcEdit (Web) β Input field with calculator. [15] ComboMultiple (Web) β Multiple item selection. [16] ComboSelect (Web) β Searchable selection field. Utilities & Extra Features [17] Google Maps (Web & Mobile) β Google Maps integration. [18] ColorPicker (Web) β Advanced color picker. [19] Theme (Web) β Theme management for uniGUI apps. [20] QrCode (Web & Mobile) β QR Code generator. [21] Keys (Web & Mobile) β Secret Keys manager (Google). [22] MultiUpload (Web & Mobile) β Multiple file upload component. [23] Signature (Web & Mobile) β Digital signature (Signature Pad). [24] Pix (Web & Mobile) β PIX QR Code generator in Delphi. [25] Camera (Web) β Webcam access (Chrome compatible). [26] QrCodeScanner (Web & Mobile) β Scanner for QR Codes, Barcodes, and 15+ formats. [27] Google Sign-In (Web) β Integrated Google login. Components for Delphi | uniGUI, IntraWeb, FMX, VCL : https://components.falconsistemas.com.br π¬ Support & Contact βοΈ Email: suporte@falconsistemas.com.br
- 265 replies
-
- 1
-
-
- falcon store
- unifs
-
(and 42 more)
Tagged with:
- falcon store
- unifs
- unifsmap
- unifskendoui
- unifsmask
- unifsbutton
- unifsmenubutton
- unifscolorpicker
- unifsedit
- unifstoggle
- unifscombobox
- unifscalcedit
- unifsgooglechart
- unifstheme
- unifstoast
- unifsconfirm
- font awesome
- maps
- routes
- directions
- direction
- marker
- distance
- fskendoui
- chart
- google chart
- qrcode
- unifsqrcode
- unifskeys
- upload
- multiupload
- unifsmultiupload
- signature
- unifssignature
- unifspix
- pix
- unifshighcharts
- unifscamera
- camera
- webcam
- heatmap
- tremes
- theme
- barcode
-
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;
-
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?
-
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?
