forked from judero01col/GMap.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGMapControl.cs
More file actions
3371 lines (2898 loc) · 105 KB
/
Copy pathGMapControl.cs
File metadata and controls
3371 lines (2898 loc) · 105 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.Drawing.Text;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using System.Windows.Forms;
using GMap.NET.Internals;
using GMap.NET.MapProviders;
using GMap.NET.ObjectModel;
using GMap.NET.Projections;
namespace GMap.NET.WindowsForms
{
/// <summary>
/// GMap.NET control for Windows Forms
/// </summary>
public partial class GMapControl : UserControl, Interface
{
/// <summary>
/// occurs when clicked on map.
/// </summary>
public event MapClick OnMapClick;
/// <summary>
/// occurs when double clicked on map.
/// </summary>
public event MapDoubleClick OnMapDoubleClick;
/// <summary>
/// occurs when clicked on marker
/// </summary>
public event MarkerClick OnMarkerClick;
/// <summary>
/// occurs when double clicked on marker
/// </summary>
public event MarkerDoubleClick OnMarkerDoubleClick;
/// <summary>
/// occurs when clicked on polygon
/// </summary>
public event PolygonClick OnPolygonClick;
/// <summary>
/// occurs when double clicked on polygon
/// </summary>
public event PolygonDoubleClick OnPolygonDoubleClick;
/// <summary>
/// occurs when clicked on route
/// </summary>
public event RouteClick OnRouteClick;
/// <summary>
/// occurs when double clicked on route
/// </summary>
public event RouteDoubleClick OnRouteDoubleClick;
/// <summary>
/// occurs on mouse enters route area
/// </summary>
public event RouteEnter OnRouteEnter;
/// <summary>
/// occurs on mouse leaves route area
/// </summary>
public event RouteLeave OnRouteLeave;
/// <summary>
/// occurs when mouse selection is changed
/// </summary>
public event SelectionChange OnSelectionChange;
/// <summary>
/// occurs on mouse enters marker area
/// </summary>
public event MarkerEnter OnMarkerEnter;
/// <summary>
/// occurs on mouse leaves marker area
/// </summary>
public event MarkerLeave OnMarkerLeave;
/// <summary>
/// occurs on mouse enters Polygon area
/// </summary>
public event PolygonEnter OnPolygonEnter;
/// <summary>
/// occurs on mouse leaves Polygon area
/// </summary>
public event PolygonLeave OnPolygonLeave;
/// <summary>
/// occurs when an exception is thrown inside the map control
/// </summary>
public event ExceptionThrown OnExceptionThrown;
/// <summary>
/// list of overlays, should be thread safe
/// </summary>
public readonly ObservableCollectionThreadSafe<GMapOverlay> Overlays =
new ObservableCollectionThreadSafe<GMapOverlay>();
/// <summary>
/// max zoom
/// </summary>
[Category("GMap.NET")]
[Description("maximum zoom level of map")]
public int MaxZoom
{
get
{
return Core.MaxZoom;
}
set
{
Core.MaxZoom = value;
}
}
/// <summary>
/// min zoom
/// </summary>
[Category("GMap.NET")]
[Description("minimum zoom level of map")]
public int MinZoom
{
get
{
return Core.MinZoom;
}
set
{
Core.MinZoom = value;
}
}
/// <summary>
/// map zooming type for mouse wheel
/// </summary>
[Category("GMap.NET")]
[Description("map zooming type for mouse wheel")]
public MouseWheelZoomType MouseWheelZoomType
{
get
{
return Core.MouseWheelZoomType;
}
set
{
Core.MouseWheelZoomType = value;
}
}
/// <summary>
/// Import From Kmz
/// </summary>
/// <param name="file"></param>
/// <returns></returns>
[Category("GMap.NET")]
[Description("Import From Kmz")]
public bool ImportFromKmz(string file)
{
try
{
return true;
}
catch (Exception)
{
return false;
}
}
/// <summary>
/// Export From Kmz
/// </summary>
/// <param name="file"></param>
/// <returns></returns>
[Category("GMap.NET")]
[Description("Export From Kmz")]
public bool ExportFromKmz(string file)
{
try
{
return true;
}
catch (Exception)
{
return false;
}
}
/// <summary>
/// enable map zoom on mouse wheel
/// </summary>
[Category("GMap.NET")]
[Description("enable map zoom on mouse wheel")]
public bool MouseWheelZoomEnabled
{
get
{
return Core.MouseWheelZoomEnabled;
}
set
{
Core.MouseWheelZoomEnabled = value;
}
}
/// <summary>
/// text on empty tiles
/// </summary>
public string EmptyTileText = "We are sorry, but we don't\nhave imagery at this zoom\nlevel for this region.";
/// <summary>
/// pen for empty tile borders
/// </summary>
public Pen EmptyTileBorders = new Pen(Brushes.White, 1);
public bool ShowCenter = true;
/// <summary>
/// pen for scale info
/// </summary>
public Pen ScalePen = new Pen(Color.Black, 3);
public Pen ScalePenBorder = new Pen(Color.WhiteSmoke, 6);
public Pen CenterPen = new Pen(Brushes.Red, 1);
/// <summary>
/// area selection pen
/// </summary>
public Pen SelectionPen = new Pen(Brushes.Blue, 2);
Brush _selectedAreaFill = new SolidBrush(Color.FromArgb(33, Color.RoyalBlue));
Color _selectedAreaFillColor = Color.FromArgb(33, Color.RoyalBlue);
/// <summary>
/// background of selected area
/// </summary>
[Category("GMap.NET")]
[Description("background color od the selected area")]
public Color SelectedAreaFillColor
{
get
{
return _selectedAreaFillColor;
}
set
{
if (_selectedAreaFillColor != value)
{
_selectedAreaFillColor = value;
if (_selectedAreaFill != null)
{
_selectedAreaFill.Dispose();
_selectedAreaFill = null;
}
_selectedAreaFill = new SolidBrush(_selectedAreaFillColor);
}
}
}
HelperLineOptions _helperLineOption = HelperLineOptions.DontShow;
/// <summary>
/// draw lines at the mouse pointer position
/// </summary>
[Browsable(false)]
public HelperLineOptions HelperLineOption
{
get
{
return _helperLineOption;
}
set
{
_helperLineOption = value;
_renderHelperLine = _helperLineOption == HelperLineOptions.ShowAlways;
if (Core.IsStarted)
{
Invalidate();
}
}
}
public Pen HelperLinePen = new Pen(Color.Blue, 1);
bool _renderHelperLine;
protected override void OnKeyDown(KeyEventArgs e)
{
base.OnKeyDown(e);
if (HelperLineOption == HelperLineOptions.ShowOnModifierKey)
{
_renderHelperLine = e.Modifiers == Keys.Shift || e.Modifiers == Keys.Alt;
if (_renderHelperLine)
{
Invalidate();
}
}
}
protected override void OnKeyUp(KeyEventArgs e)
{
base.OnKeyUp(e);
if (HelperLineOption == HelperLineOptions.ShowOnModifierKey)
{
_renderHelperLine = e.Modifiers == Keys.Shift || e.Modifiers == Keys.Alt;
if (!_renderHelperLine)
{
Invalidate();
}
}
}
Brush _emptyTileBrush = new SolidBrush(Color.Navy);
Color _emptyTileColor = Color.Navy;
/// <summary>
/// color of empty tile background
/// </summary>
[Category("GMap.NET")]
[Description("background color of the empty tile")]
public Color EmptyTileColor
{
get
{
return _emptyTileColor;
}
set
{
if (_emptyTileColor != value)
{
_emptyTileColor = value;
if (_emptyTileBrush != null)
{
_emptyTileBrush.Dispose();
_emptyTileBrush = null;
}
_emptyTileBrush = new SolidBrush(_emptyTileColor);
}
}
}
/// <summary>
/// show map scale info
/// </summary>
public bool MapScaleInfoEnabled = false;
/// <summary>
/// Position of the map scale info
/// </summary>
public MapScaleInfoPosition MapScaleInfoPosition;
/// <summary>
/// enables filling empty tiles using lower level images
/// </summary>
public bool FillEmptyTiles = true;
/// <summary>
/// if true, selects area just by holding mouse and moving
/// </summary>
public bool DisableAltForSelection = false;
/// <summary>
/// retry count to get tile
/// </summary>
[Browsable(false)]
public int RetryLoadTile
{
get
{
return Core.RetryLoadTile;
}
set
{
Core.RetryLoadTile = value;
}
}
/// <summary>
/// how many levels of tiles are staying decompresed in memory
/// </summary>
[Browsable(false)]
public int LevelsKeepInMemory
{
get
{
return Core.LevelsKeepInMemory;
}
set
{
Core.LevelsKeepInMemory = value;
}
}
/// <summary>
/// map dragg button
/// </summary>
[Category("GMap.NET")] public MouseButtons DragButton = MouseButtons.Right;
private bool _showTileGridLines;
/// <summary>
/// shows tile gridlines
/// </summary>
[Category("GMap.NET")]
[Description("shows tile gridlines")]
public bool ShowTileGridLines
{
get
{
return _showTileGridLines;
}
set
{
_showTileGridLines = value;
Invalidate();
}
}
/// <summary>
/// current selected area in map
/// </summary>
private RectLatLng _selectedArea;
[Browsable(false)]
public RectLatLng SelectedArea
{
get
{
return _selectedArea;
}
set
{
_selectedArea = value;
if (Core.IsStarted)
{
Invalidate();
}
}
}
/// <summary>
/// map boundaries
/// </summary>
public RectLatLng? BoundsOfMap = null;
/// <summary>
/// enables integrated DoubleBuffer for running on windows mobile
/// </summary>
public bool ForceDoubleBuffer;
readonly bool MobileMode = false;
/// <summary>
/// stops immediate marker/route/polygon invalidations;
/// call Refresh to perform single refresh and reset invalidation state
/// </summary>
public bool HoldInvalidation;
/// <summary>
/// call this to stop HoldInvalidation and perform single forced instant refresh
/// </summary>
public override void Refresh()
{
HoldInvalidation = false;
lock (Core.InvalidationLock)
{
Core.LastInvalidation = DateTime.Now;
}
base.Refresh();
}
#if !DESIGN
/// <summary>
/// enque built-in thread safe invalidation
/// </summary>
public new void Invalidate()
{
if (Core.Refresh != null)
{
Core.Refresh.Set();
}
}
#endif
private bool _grayScale;
[Category("GMap.NET")]
public bool GrayScaleMode
{
get
{
return _grayScale;
}
set
{
_grayScale = value;
ColorMatrix = value ? ColorMatrixs.GrayScale : null;
}
}
private bool _negative;
[Category("GMap.NET")]
public bool NegativeMode
{
get
{
return _negative;
}
set
{
_negative = value;
ColorMatrix = value ? ColorMatrixs.Negative : null;
}
}
ColorMatrix _colorMatrix;
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
[Browsable(false)]
public ColorMatrix ColorMatrix
{
get
{
return _colorMatrix;
}
set
{
_colorMatrix = value;
if (GMapProvider.TileImageProxy != null && GMapProvider.TileImageProxy is GMapImageProxy)
{
(GMapProvider.TileImageProxy as GMapImageProxy).ColorMatrix = value;
if (Core.IsStarted)
{
ReloadMap();
}
}
}
}
// internal stuff
internal readonly Core Core = new Core();
internal readonly Font CopyrightFont = new Font(FontFamily.GenericSansSerif, 7, FontStyle.Regular);
internal readonly Font MissingDataFont = new Font(FontFamily.GenericSansSerif, 11, FontStyle.Bold);
Font ScaleFont = new Font(FontFamily.GenericSansSerif, 7, FontStyle.Regular);
internal readonly StringFormat CenterFormat = new StringFormat();
internal readonly StringFormat BottomFormat = new StringFormat();
readonly ImageAttributes _tileFlipXYAttributes = new ImageAttributes();
double _zoomReal;
Bitmap _backBuffer;
Graphics _gxOff;
#if !DESIGN
/// <summary>
/// construct
/// </summary>
public GMapControl()
{
if (!IsDesignerHosted)
{
SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
SetStyle(ControlStyles.AllPaintingInWmPaint, true);
SetStyle(ControlStyles.UserPaint, true);
SetStyle(ControlStyles.Opaque, true);
ResizeRedraw = true;
_tileFlipXYAttributes.SetWrapMode(WrapMode.TileFlipXY);
// only one mode will be active, to get mixed mode create new ColorMatrix
GrayScaleMode = GrayScaleMode;
NegativeMode = NegativeMode;
Core.SystemType = "WindowsForms";
RenderMode = RenderMode.GDI_PLUS;
CenterFormat.Alignment = StringAlignment.Center;
CenterFormat.LineAlignment = StringAlignment.Center;
BottomFormat.Alignment = StringAlignment.Center;
BottomFormat.LineAlignment = StringAlignment.Far;
if (GMaps.Instance.IsRunningOnMono)
{
// no imports to move pointer
MouseWheelZoomType = MouseWheelZoomType.MousePositionWithoutCenter;
}
Overlays.CollectionChanged += Overlays_CollectionChanged;
}
}
#endif
static GMapControl()
{
if (!IsDesignerHosted)
{
GMapImageProxy.Enable();
GMaps.Instance.SQLitePing();
}
}
void Overlays_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
if (e.NewItems != null)
{
foreach (GMapOverlay obj in e.NewItems)
{
if (obj != null)
{
obj.Control = this;
}
}
if (Core.IsStarted && !HoldInvalidation)
{
Invalidate();
}
}
}
void InvalidatorEngage(object sender, ProgressChangedEventArgs e)
{
base.Invalidate();
}
/// <summary>
/// update objects when map is draged/zoomed
/// </summary>
internal void ForceUpdateOverlays()
{
try
{
HoldInvalidation = true;
foreach (var o in Overlays)
{
if (o.IsVisibile)
{
o.ForceUpdate();
}
}
}
finally
{
Refresh();
}
}
/// <summary>
/// updates markers local position
/// </summary>
/// <param name="marker"></param>
public void UpdateMarkerLocalPosition(GMapMarker marker)
{
var p = FromLatLngToLocal(marker.Position);
{
if (!MobileMode)
{
p.OffsetNegative(Core.RenderOffset);
}
marker.LocalPosition = new Point((int)(p.X + marker.Offset.X), (int)(p.Y + marker.Offset.Y));
}
}
/// <summary>
/// updates routes local position
/// </summary>
/// <param name="route"></param>
public void UpdateRouteLocalPosition(GMapRoute route)
{
route.LocalPoints.Clear();
for (int i = 0; i < route.Points.Count; i++)
{
var p = FromLatLngToLocal(route.Points[i]);
if (!MobileMode)
{
p.OffsetNegative(Core.RenderOffset);
}
route.LocalPoints.Add(p);
}
route.UpdateGraphicsPath();
}
/// <summary>
/// updates polygons local position
/// </summary>
/// <param name="polygon"></param>
public void UpdatePolygonLocalPosition(GMapPolygon polygon)
{
polygon.LocalPoints.Clear();
for (int i = 0; i < polygon.Points.Count; i++)
{
var p = FromLatLngToLocal(polygon.Points[i]);
if (!MobileMode)
{
p.OffsetNegative(Core.RenderOffset);
}
polygon.LocalPoints.Add(p);
}
polygon.UpdateGraphicsPath();
}
/// <summary>
/// sets zoom to max to fit rect
/// </summary>
/// <param name="rect"></param>
/// <returns></returns>
public bool SetZoomToFitRect(RectLatLng rect)
{
if (_lazyEvents)
{
_lazySetZoomToFitRect = rect;
}
else
{
int maxZoom = Core.GetMaxZoomToFitRect(rect);
if (maxZoom > 0)
{
var center = new PointLatLng(rect.Lat - rect.HeightLat / 2, rect.Lng + rect.WidthLng / 2);
Position = center;
if (maxZoom > MaxZoom)
{
maxZoom = MaxZoom;
}
if ((int)Zoom != maxZoom)
{
Zoom = maxZoom;
}
return true;
}
}
return false;
}
RectLatLng? _lazySetZoomToFitRect;
bool _lazyEvents = true;
/// <summary>
/// sets to max zoom to fit all markers and centers them in map
/// </summary>
/// <param name="overlayId">overlay id or null to check all</param>
/// <returns></returns>
public bool ZoomAndCenterMarkers(string overlayId)
{
var rect = GetRectOfAllMarkers(overlayId);
if (rect.HasValue)
{
return SetZoomToFitRect(rect.Value);
}
return false;
}
/// <summary>
/// zooms and centers all route
/// </summary>
/// <param name="overlayId">overlay id or null to check all</param>
/// <returns></returns>
public bool ZoomAndCenterRoutes(string overlayId)
{
var rect = GetRectOfAllRoutes(overlayId);
if (rect.HasValue)
{
return SetZoomToFitRect(rect.Value);
}
return false;
}
/// <summary>
/// zooms and centers route
/// </summary>
/// <param name="route"></param>
/// <returns></returns>
public bool ZoomAndCenterRoute(MapRoute route)
{
var rect = GetRectOfRoute(route);
if (rect.HasValue)
{
return SetZoomToFitRect(rect.Value);
}
return false;
}
/// <summary>
/// gets rectangle with all objects inside
/// </summary>
/// <param name="overlayId">overlay id or null to check all except zoomInsignificant</param>
/// <returns></returns>
public RectLatLng? GetRectOfAllMarkers(string overlayId)
{
RectLatLng? ret = null;
double left = double.MaxValue;
double top = double.MinValue;
double right = double.MinValue;
double bottom = double.MaxValue;
foreach (var o in Overlays)
{
if (overlayId == null && o.IsZoomSignificant || o.Id == overlayId)
{
if (o.IsVisibile && o.Markers.Count > 0)
{
foreach (var m in o.Markers)
{
if (m.IsVisible)
{
// left
if (m.Position.Lng < left)
{
left = m.Position.Lng;
}
// top
if (m.Position.Lat > top)
{
top = m.Position.Lat;
}
// right
if (m.Position.Lng > right)
{
right = m.Position.Lng;
}
// bottom
if (m.Position.Lat < bottom)
{
bottom = m.Position.Lat;
}
}
}
}
}
}
if (left != double.MaxValue && right != double.MinValue && top != double.MinValue &&
bottom != double.MaxValue)
{
ret = RectLatLng.FromLTRB(left, top, right, bottom);
}
return ret;
}
/// <summary>
/// gets rectangle with all objects inside
/// </summary>
/// <param name="overlayId">overlay id or null to check all except zoomInsignificant</param>
/// <returns></returns>
public RectLatLng? GetRectOfAllRoutes(string overlayId)
{
RectLatLng? ret = null;
double left = double.MaxValue;
double top = double.MinValue;
double right = double.MinValue;
double bottom = double.MaxValue;
foreach (var o in Overlays)
{
if (overlayId == null && o.IsZoomSignificant || o.Id == overlayId)
{
if (o.IsVisibile && o.Routes.Count > 0)
{
foreach (var route in o.Routes)
{
if (route.IsVisible && route.From.HasValue && route.To.HasValue)
{
foreach (var p in route.Points)
{
// left
if (p.Lng < left)
{
left = p.Lng;
}
// top
if (p.Lat > top)
{
top = p.Lat;
}
// right
if (p.Lng > right)
{
right = p.Lng;
}
// bottom
if (p.Lat < bottom)
{
bottom = p.Lat;
}
}
}
}
}
}
}
if (left != double.MaxValue && right != double.MinValue && top != double.MinValue &&
bottom != double.MaxValue)
{
ret = RectLatLng.FromLTRB(left, top, right, bottom);
}
return ret;
}
/// <summary>
/// gets rect of route
/// </summary>
/// <param name="route"></param>
/// <returns></returns>
public RectLatLng? GetRectOfRoute(MapRoute route)
{
RectLatLng? ret = null;
double left = double.MaxValue;
double top = double.MinValue;
double right = double.MinValue;
double bottom = double.MaxValue;
if (route.From.HasValue && route.To.HasValue)
{
foreach (var p in route.Points)
{
// left
if (p.Lng < left)
{
left = p.Lng;
}
// top
if (p.Lat > top)
{
top = p.Lat;
}
// right
if (p.Lng > right)
{
right = p.Lng;
}
// bottom
if (p.Lat < bottom)
{
bottom = p.Lat;
}
}
ret = RectLatLng.FromLTRB(left, top, right, bottom);
}
return ret;
}
/// <summary>
/// gets image of the current view
/// </summary>