2.1.1 • Published 1 month ago

sdk-google-map v2.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
1 month ago

Description:

The sdk-google-map component is a simple to use component that allows you to embed a Google Maps view without the need of any API keys. By providing either Lat/Long coordinates, or an address, you can dynamically display maps in your application.

INSTALLATION:

Using NPM:

npm install --save sdk-google-map

CONFIGURATION:

To configure the sdk-google-map for your application, add the following lines to your app.module.ts file:

import { SDKGoogleMapModule } from 'sdk-google-map';

@NgModule({
    imports: [
        SDKGoogleMapModule
    ]
})
export class AppModule { }

PROPERTIES:

height: string = ""; // This value should include a size type (e.g., '500px');
width: string = ""; // This value should include a size type (e.g., '500px');
latitude: string = ""; // Example: "37.422161"
longitude: string = ""; // Example: "-122.084267"
location: string = ""; // Example: "1600 Amphitheatre Parkway Mountain View, CA 94043"
zoom: string = "10"; // Default value shown.
border: string = "1px solid lightgray"; // Default value shown. Use 'unset' to remove the border.

USAGE:

<sdk-google-map location="1600 Amphitheatre Parkway Mountain View, CA 94043, USA"></sdk-google-map>

<sdk-google-map latitude="37.422161" longitude="-122.084267"></sdk-google-map>

Setting the zoom, height, width and border:

<sdk-google-map location="1600 Amphitheatre Parkway Mountain View, CA 94043, USA" height="500px" width="750px" zoom="12" border="1px solid blue"></sdk-google-map>

Dynamic variables:

public mapLatitude: string = "37.422161";
public mapLongitude: string = "-122.084267";
public mapLocation: string = "1600 Amphitheatre Parkway Mountain View, CA 94043";
<sdk-google-map [latitude]="mapLatitude" [longitude]="mapLongitude" height="500px" width="750px" zoom="12"></sdk-google-map>
<sdk-google-map [location]="mapLocation" height="500px" width="750px" zoom="12"></sdk-google-map>

NOTE: Latitude/Longitude will be used in lieu of Location, if all 3 are provided.

2.1.1

1 month ago

2.1.0

2 months ago

2.0.1

2 months ago

2.0.0

2 months ago

1.0.16

6 months ago

1.0.15

9 months ago

1.0.14

12 months ago

1.0.13

1 year ago

1.0.12

1 year ago

1.0.11

1 year ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago