Skip to content

Commit

Permalink
Fix properties alphabetical order
Browse files Browse the repository at this point in the history
  • Loading branch information
OS-giulianasilva committed Dec 15, 2023
1 parent 24f7d40 commit f447dd0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/OSFramework/Maps/Configuration/IConfigurationMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ namespace OSFramework.Maps.Configuration {
*/
export interface IConfigurationMap extends IConfiguration {
apiKey?: string;
autoZoomOnShapes?: boolean;
center: string | OSStructures.OSMap.Coordinates;
height: string;
type?: Enum.OSMap.Type;
uniqueId: string;
zoom: Enum.OSMap.Zoom;
autoZoomOnShapes?: boolean;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ namespace Provider.Maps.Google.Configuration.OSMap {
{
public advancedFormat: string;
public apiKey: string;
public autoZoomOnShapes: boolean;
public center: string | OSFramework.Maps.OSStructures.OSMap.Coordinates;
public height: string;
public markerClusterer: OSFramework.Maps.Configuration.IConfigurationMarkerClusterer;
Expand All @@ -15,7 +16,6 @@ namespace Provider.Maps.Google.Configuration.OSMap {
public type: OSFramework.Maps.Enum.OSMap.Type;
public uniqueId: string;
public zoom: OSFramework.Maps.Enum.OSMap.Zoom;
public autoZoomOnShapes: boolean;

// No need for constructor, as it is not doing anything. Left the constructor, to facilitade future usage.
// constructor(config: JSON) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ namespace Provider.Maps.Leaflet.Configuration.OSMap {
extends OSFramework.Maps.Configuration.AbstractConfiguration
implements OSFramework.Maps.Configuration.IConfigurationMap
{
public autoZoomOnShapes: boolean;
public center: string | OSFramework.Maps.OSStructures.OSMap.Coordinates;
public height: string;
public offset: OSFramework.Maps.OSStructures.OSMap.Offset;
public uniqueId: string;
public zoom: OSFramework.Maps.Enum.OSMap.Zoom;
public autoZoomOnShapes: boolean;

// No need for constructor, as it is not doing anything. Left the constructor, to facilitade future usage.
// constructor(config: JSON) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ namespace Provider.Maps.Leaflet.Configuration.Shape {
{
public allowDrag: boolean;
public allowEdit: boolean;
public autoZoomOnShapes: boolean;
public locations: string;
public strokeColor: string;
public strokeOpacity: number;
public strokeWeight: number;
public autoZoomOnShape: boolean;

// No need for constructor, as it is not doing anything. Left the constructor, to facilitade future usage.
// constructor(
Expand Down

0 comments on commit f447dd0

Please sign in to comment.