
Security News
Python Adopts Standard Lock File Format for Reproducible Installs
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.
angular-yandex-maps-v3
Advanced tools
Yandex.Maps Angular components that implement the Yandex.Maps JavaScript API 3.0
Yandex.Maps Angular components that implement the Yandex.Maps JavaScript API 3.0
npm install angular-yandex-maps-v3
npm install @yandex/ymaps3-types --save-dev
Angular version | Library version |
---|---|
v16, v17, v18 | v18.x |
<div class="container">
<y-map
[props]="{
location: {
center: [-0.127696, 51.507351],
zoom: 10,
},
theme: 'dark',
}"
>
<y-map-default-scheme-layer />
</y-map>
</div>
.container {
width: 1000px;
height: 500px;
}
Make sure that skipLibCheck
is set to true
, because @yandex/ymaps3-types
uses Vue and React typings.
If you do not set this option, you will not be able to build the application.
import { Component } from '@angular/core';
import { YMapComponent, YMapDefaultSchemeLayerDirective } from 'angular-yandex-maps-v3';
@Component({
standalone: true,
imports: [YMapComponent, YMapDefaultSchemeLayerDirective],
})
export class AppComponent {}
import { ApplicationConfig } from '@angular/core';
import { provideYConfig, YConfig } from 'angular-yandex-maps-v3';
const config: YConfig = {
apikey: 'API_KEY',
};
export const appConfig: ApplicationConfig = {
providers: [provideYConfig(config)],
};
import { NgModule } from '@angular/core';
import {
YConfig,
YMapComponent,
YMapDefaultSchemeLayerDirective,
provideYConfig,
} from 'angular-yandex-maps-v3';
const config: YConfig = {
apikey: 'API_KEY',
};
@NgModule({
imports: [YMapComponent, YMapDefaultSchemeLayerDirective],
providers: [provideYConfig(config)],
})
export class AppModule {}
FAQs
Yandex.Maps Angular components that implement the Yandex.Maps JavaScript API 3.0
The npm package angular-yandex-maps-v3 receives a total of 107 weekly downloads. As such, angular-yandex-maps-v3 popularity was classified as not popular.
We found that angular-yandex-maps-v3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.
Security News
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.