123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.SmallFun
- {
-
-
-
- public class GoogleMapResultView
- {
-
-
-
- public object? Geocoded_waypoints { get; set; }
-
-
-
- public object? Routes { get; set; }
-
-
-
- public string? Status { get; set; }
- }
-
-
-
- public class Routes
- {
-
-
-
- public Bounds? Bounds { get; set; }
-
-
-
- public string? CopyRights { get; set; }
- }
- #region bounds 界标
-
-
-
- public class Bounds {
-
-
-
- public Northeast? Northeast { get; set; }
-
-
-
- public Southwest? Southwest { get; set; }
- }
-
-
-
- public class Northeast
- {
-
-
-
- public string? Lat { get; set; }
-
-
-
- public string Lng { get; set; }
- }
-
-
-
- public class Southwest
- {
-
-
-
- public string? Lat { get; set; }
-
-
-
- public string Lng { get; set; }
- }
- #endregion
- #region leg
-
-
-
-
- public class Leg
- {
-
-
-
- public TextValue? Distance { get; set; }
-
-
-
- public TextValue? Duration { get; set; }
-
-
-
- public string? End_address { get; set; }
-
-
-
- public LatLng? End_location { get; set; }
-
-
-
- public string? Start_address { get; set; }
-
-
-
- public LatLng? Start_location { get; set; }
-
-
-
-
- public List<Step>? Steps { get; set; }
- }
-
-
-
- public class Step
- {
-
-
-
- public TextValue? Distance { get; set; }
-
-
-
- public TextValue? Duration { get; set; }
-
-
-
- public LatLng? End_location { get; set; }
-
-
-
- public string? Html_instructions { get; set; }
-
-
-
- public Polyline? Polyline { get; set; }
-
-
-
- public LatLng? Start_location { get; set; }
-
-
-
- public string? Travel_mode { get; set; }
- }
-
-
-
- public class Polyline
- {
-
-
-
- public string? Points { get; set; }
- }
-
-
-
- public class TextValue
- {
-
-
-
- public string? Text { get; set; }
-
-
-
- public int Value { get; set; }
- }
-
-
-
- public class LatLng
- {
-
-
-
- public string? Lat { get; set; }
-
-
-
- public string Lng { get; set; }
- }
-
-
-
-
- #endregion
- }
|