I have used two layers geom_point, with shape 24 and default. I would like to represent shapes and respective description in the legend. Can any one guide me how to do it.
total_map<-ggmap(Map)+
geom_point(data = crime_poss_drugs,shape=24,size=6,
aes(x = lon, y = lat,colour=factor(drug_cases)))+
geom_point(data = crime_prod_drugs,aes(x = lon, y = lat,colour=factor(drug_cases)))
Thanks in advance.