Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

This is the directive for @agm/core (not official)

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
license-banner.txt
NotificationsYou must be signed in to change notification settings

explooosion/Agm-Direction

Repository files navigation

npm versionnpmBuild StatusPRs Welcome

Agm-Direction is the directive for@agm/core (not official)

  • Angular
  • Google Map API

How to use?
👉Start Reading👉Build With Ionic

Agm-Direction

Credit

Installation

Installation is done using thenpm install command:

  • Use npm

    npm install --save @agm/core agm-direction
  • Use yarn

    yarn add @agm/core agm-direction

Importing Modules

import{BrowserModule}from'@angular/platform-browser';import{NgModule}from'@angular/core';import{AppComponent}from'./app.component';import{AgmCoreModule}from'@agm/core';//@agm/coreimport{AgmDirectionModule}from'agm-direction';// agm-direction@NgModule({declarations:[AppComponent],imports:[BrowserModule,AgmCoreModule.forRoot({//@agm/coreapiKey:'your key',}),AgmDirectionModule,// agm-direction],providers:[],bootstrap:[AppComponent]})exportclassAppModule{}

Usage

HTML

<agm-map[latitude]="lat"[longitude]="lng"><agm-direction[origin]="origin"[destination]="destination"></agm-direction></agm-map>

CSS

agm-map {height:400px;}

TS

publiclat=24.799448;publiclng=120.979021;public origin:any;public destination:any;ngOnInit(){this.getDirection();}getDirection(){this.origin={lat:24.799448,lng:120.979021};this.destination={lat:24.799524,lng:120.975017};// Location within a string// this.origin = 'Taipei Main Station';// this.destination = 'Taiwan Presidential Office';}

Document

Development

👉Playground Project

git clone https://github.com/explooosion/Agm-Direction.git
npm install
npm run build
npm run pack:lib
cd playground&& npm install
# Add gmap api key in environment.ts
npm start

Generator

This library generated byangular-library-starter.

License

MIT


[8]ページ先頭

©2009-2025 Movatter.jp