Overview

This page shows the top 10 universities in Maharashtra, India. It uses the leaflet library to create this interactive map.

Data for these universities was collected over the web and is just representative for this assignment. Kindly verify with the universities for latest information.

Feautures included in this map:

  1. Lists the top 10 Universities in Maharashtra state, India.
  2. The different colored circles represent the student population enrolled in the university.
  3. The Text and number shows the rank and web link of the university.
  4. University logos are shown.
  5. The universities are grouped per area/ city.
univ %>% leaflet() %>% addTiles() %>%
    addMarkers(icon = univIcons ,popup = univSites,
               clusterOptions = markerClusterOptions()) %>%
    addCircles(weight = 3, radius = sqrt(univ$pop)*40,
               color = cols)
## Assuming "lng" and "lat" are longitude and latitude, respectively
## Assuming "lng" and "lat" are longitude and latitude, respectively