Questions tagged [point-of-interest]
65 questions
-1
votes
2 answers
Display all of specific POI in a country - google maps
I am working on a project which happens to collaborate with google maps. I would like to display all of business POI in one country.
I guess this is not enough:
{
featureType: "poi.business",
elementType: "labels",
stylers: [
{ visibility:…

Sidius
- 416
- 1
- 5
- 24
-1
votes
1 answer
OSMdroid point of interest
Hy I am new to osmdroid and i have code to point my location, now I am trying to mark poi(point of interest ect. cinema, bus station...) on map but I don't know how to do it. Is there anyone who had done it or knows some good tutorial where is…

beggIner
- 1
- 2
-1
votes
1 answer
Develop an iPhone GPS time based POI app?
I'd like to create an app that provides "time based" POI landmark markers on a typical map interface. For example, between the hours of 4:00pm-7:00pm display a bar that advertises their happy hour through the app.
Is the best way to handle this via…
-2
votes
1 answer
Points of interest for zip code
I"m looking for way to get list of points of interests like airports, parks, etc. per zip code using Bing maps. Believe me, I search google but it looks like my google is broken since I can't find anything useful. I just need a way to get that…

Zuzlx
- 1,246
- 14
- 33
-5
votes
6 answers
const in body of C++ functions
I realized, what if i define const int into the body of c++ function and then use the address arithmetic to change the value of the constant( its on the stack, isn't it? ). i got this code:
const int a = 10;
int b = 100;
int * c = &b;
c++;
cout <<…

Mikhail Krayushkin
- 311
- 3
- 7