I use MAXMind already in my LP's but I dont want to have each member be from the same city, looks suspicious and fake, rather maybe do a radius within 5-20 miles or so.
Does anyone know how to do it? Dont mind a paid solution either as I think it would be worth it!
Thanks!
You could create an array of names and images using a PHP script and use a random number generator to populate the map. If you know PHP, this could probably be done in 30 minutes. If you don't I'm sure you can have someone build one on odesk for less than $50. That's actually a pretty good idea.
not sure what you said exactly, but it did give me an idea of maybe having some code grab the users IP and then using it add a few digits or subtract ( if IP ranges work this way, not sure) and then it would automatically pre populate the other geos randomly with the city of the random IP?
lots of adult networks use something like this but not sure their exact method / script.
I had a post on this same idea recently and haven't done much to get it followed up on.
this is the closest thing I could find but couldn't get it to work.
http://www.geoplugin.com/webservices...#nearby_places
check out this lander and see if this is what you're talking about.
http://lesbianpersonals.com/go/g551525-pct
here's a chunk of what I used on mine, not exactly what I wanted which sounds like what you described but does do random ages within a range and random distance from the visitor.
results in something like this

<p class="panel member-thumb">SlipkFully, <script>
var randomNumber = Math.floor(Math.random()*(39-25)) + 25;
document.write(randomNumber);
</script><br>
<script>
var randomNumber = Math.floor(Math.random()*(45-1))/10 + 1;
document.write(randomNumber);
</script> miles from you in <script>document.write(geoip_city());</script></p>
one problem i have with this approach too is that the numbers also randomize with each refresh but the images and names are static. in the grand scheme it's not a big deal but bothers me. gonna tweak it but wanted to get the thing running
Yeah that geoplugin is interesting.. im gonna mess around with it and see if i can get it to work, will post update if i do! thanks!
$names = array("Cindy","Lucy","Beth","Laura","Claire","Kylie");
echo $names[rand(0,5)];
echo $names[rand(0,5)];
@caurmen Thanks for the reply, I will try that with my current setup.
I was talking about splitting out the one on the geoplugin site. they have an example on there showing 3 nearby places. I'm not sure how to take something like that, add additional instances and having them places on different places on the page. Hope that makes sense.