Skip to content

Instantly share code, notes, and snippets.

View rockyderaze's full-sized avatar

Dheeraj Kumar Guduri rockyderaze

  • Hyderabad
View GitHub Profile
@pimatco
pimatco / all-angular-material-components-imports.txt
Last active December 6, 2023 15:24
All Angular Material Components Imports from app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
//Angular Material Components
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {MatCheckboxModule} from '@angular/material';
import {MatButtonModule} from '@angular/material';
@willcadell
willcadell / gist:df824f1e550dec4bcaee
Created May 21, 2015 17:11
better leaflet onEachFeature example
<!DOCTYPE html>
<html>
<head>
<title>Leaflet</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script>
</head>
<body>
<div style="width:500px; height:500px" id="map"></div>