npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ng-leaflet-universal

v15.2.8

Published

NgLeafletUniversal is an open source Angular module that extends and simplifies the Leaflet implementation for Angular.

Downloads

145

Readme

NgLeafletUniversal

NgLeafletUniversal is an open source Angular module that extends and simplifies the Leaflet implementation for Angular.

Server side rendering (SSR) support

One of the principals problems when you are using Leaflet's maps in your Angular application is the configuration for SSR. This library contains all the required configuration for been integrated with your Angular Universal application.

Installation

You can install this library via npm using the next command on your project

npm i ng-leaflet-universal

Implementation

After installing, import the module in your application:

import { NgLeafletUniversalModule } from "ng-leaflet-universal";
imports: [
	...
	NgLeafletUniversalModule
],

Add the leaflet css to your angular.json:

"styles": [
	"./node_modules/leaflet/dist/leaflet.css",
	"src/styles.css"
],

Basic template implementation:

<div class="map-wrapper">
  <ng-leaflet-universal></ng-leaflet-universal>
</div>

It's up to you adding this styles.

.map-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
}

Add marker to your map using the updateMarkers function in your own component

import { AfterViewInit, Component, ViewChild } from  '@angular/core';
import { MapComponent } from 'ng-leaflet-universal';
import { Marker } from 'ng-leaflet-universal/lib/models/marker.interface';

@Component({
	selector:  'app-custom-component',
	templateUrl:  './custom-component.component.html',
	styleUrls: ['./custom-component.component.scss'],
})
export  class  CustomComponentComponent  implements AfterViewInit {
@ViewChild(MapComponent) mapComponent: MapComponent;
markers: Marker[];

constructor() {
	this.markers = [];
}

ngAfterViewInit(): void {
	this.mapComponent.updateMarkers(this.markers);
}

Once you set or update your marker list using the updateMarkers function, the map will set the view on the center of your markers collection automatically.

Elements / components

Markers

We provide you an marker component that you can use for setting your locations easily, setting the location point (Latitude and Longitude) and the icon you would like to show into it.

Marker example

Model: Key | Type | Definition -|--|-- icon |string |Url of icon or image you want to show in your marker. location | Location: { latitude: string, longitude: string } | The specific location where your marker will be showed. card |MarkerCard | The card that will be open when a user click on your marker.

Example:

myMarker: Marker = {
  id: "abc123",
  icon: "https://picsum.photos/200/200",
  location: {
    latitude: -81.1288,
    longitude: -81.4579,
  },
  card: myMarkerCard,
};

Marker Cards

This library contains a card component that you can customize and adapt to your own needs. These cards will be open when you click in your markers. Every single element in this cards includes several parameters that allows you customize that element's style, and a class param that you can use for setting your own css class.

Marker card example

Model: | Key | Type | Definition |--|--|-- |image | CardImage | Specify the main image of the card |title | CardText | Show a title into the card |subtitle | CardText | Show a subtitle into the card |address |CardText | Show the address of the lacation |content |CardText | An html that will be rendered into the card |cardStyle | CardStyle | An object that define (By params) the way your card will look |callToActions | CardCallToAction[] | A collection that indicate the buttons will be shown in the card |customStyleClass |string | A css class that allows you to set your own style rules for your cards |customHtml |string | A custom html string that you can use to replace the default card structure and define everything you want in the card

Example:

    card: {
	    image: { url:  'https://picsum.photos/200/200' },
	    title: { text:  'The place', customStyleClass:  'awesome-title' },
	    subtitle: { text:  'The best place' },
	    content: { text: '<p> This is the content that will be used in the <b> card </b> </p>' },
	    address: { text:  'Neverland, NM 88203' },
	    callToActions: [
		    {
			    text:  'View details',
			    link:  'https://myawesomeapp.domain/Location-1',
			    customStyleClass:  'my-details-button'
		    },
		    {
			    text:  'Directions',
			    backgroundColor:  '#007319',
			    textColor:  '#fff',
			    link:  `https://www.google.com/maps/@-81.1288,-81.4579,18.13z`,
			    icon: 'fas fa-directions'
		    }
	    ],
	    customStyleClass: 'custom-card-style'
    }

Contribuitors