-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #170 from ArnoldV/develop
Release 3.0.2
- Loading branch information
Showing
6 changed files
with
19 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
using Newtonsoft.Json; | ||
using System.Text.Json.Serialization; | ||
using Newtonsoft.Json; | ||
|
||
namespace Our.Umbraco.GMaps.Models.Legacy | ||
{ | ||
internal class LegacyAddress : Address | ||
{ | ||
[JsonProperty("latlng")] | ||
internal string LatLng { get; set; } | ||
[JsonPropertyName("latlng")] | ||
public string LatLng { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
using Newtonsoft.Json; | ||
using System.Text.Json.Serialization; | ||
using Newtonsoft.Json; | ||
|
||
namespace Our.Umbraco.GMaps.Models | ||
{ | ||
internal class LegacyMapConfig : MapConfig | ||
{ | ||
[JsonProperty("mapcenter")] | ||
internal string MapCenter { get; set; } | ||
[JsonPropertyName("mapcenter")] | ||
public string MapCenter { get; set; } | ||
|
||
[JsonProperty("zoom")] | ||
internal new string Zoom { get; set; } | ||
[JsonPropertyName("zoom")] | ||
public new string Zoom { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters