I am trying to draw detailed maps of States/Districts of India with GADM data and using R. I have used the following code
# Load required libraries
library(sp)
library(RColorBrewer)
# ---------------------------------------------------------------------------
# load level 2 india data downloaded from http://gadm.org/country
load("IND_adm2.RData")
ind2 = gadm
# plotting districts of a State, in this case West Bengal
wb2 = (ind2[ind2$NAME_1=="West Bengal",])
spplot(wb2,"NAME_1", main = "West Bengal Districts",
colorkey=F, scales=list(draw=T))
to generate this map
I am now trying to put in a couple of markers ( or points plus text ) to show district headquarters, "Purulia" at lon = 86.36521 lat = 23.33208 but somehow I am unable to get the sp.layout
syntax right. I will need this for a set of towns whose long, lat will be known. Will be very grateful if someone can help me out with this.