US Cities
- Ann Arbor, MI (4)
- Atlanta, GA (10)
- Austin, TX (14)
- Bakersfield, CA (2)
- Baltimore, MD (29)
- Boston, MA (20)
- Chattanooga, TN (1)
- Chicago, IL (9)
- College Station, TX (1)
- Columbus, OH (3)
- Dallas, TX (11)
- Dayton, OH (6)
- Denver, CO (13)
- Detroit, MI (4)
- El Paso, TX (1)
- Fairbanks, AK (1)
- Houston, TX (21)
- Indianapolis, IN (2)
- Iowa City, IA (2)
- Kailua Kona, HI (1)
- Kansas City, MO (5)
- Las Vegas, NV (1)
- Los Angeles, CA (39)
- Miami, FL (15)
- Milwaukee, WI (4)
- Minneapolis, MN (7)
- Montgomery, AL (1)
- New York, NY (23)
- Newark, DE (16)
- Philadelphia, PA (17)
- Phoenix, AZ (7)
- Portland, OR (7)
- Reno, NV (3)
- Rochester, NY (1)
- Sacramento, CA (6)
- Salt Lake City, UT (12)
- San Antonio, TX (5)
- San Diego, CA (20)
- San Francisco Bay Area, CA (49)
- San Luis Obispo, CA (6)
- Santa Barbara, CA (9)
- Seattle, WA (16)
- St. Louis, Missouri (1)
- Tampa, FL (1)
- Tupelo, MS (1)
- Washington, D.C. (34)
International Cities
- Amman, Jordan (3)
- Bangalore, India (3)
- Berlin, Germany (3)
- Cairo, Egypt (1)
- Cape Town, South Africa (8)
- Hamala, Bahrain (1)
- Hobart, Australia (1)
- Hong Kong (3)
- Johannesburg, South Africa (1)
- Leipzig, Germany (2)
- London, England (19)
- Madrid, Spain (2)
- Manchester, England (1)
- Mexico City, Mexico (1)
- Minsk, Belarus (2)
- Monterrey, Mexico (2)
- Montréal, Canada (1)
- Mumbai, India (1)
- Oslo, Norway (1)
- Oxford, England (1)
- Paris, France (5)
- Singapore (2)
- Tel Aviv, Israel (4)
- The Hague, Netherlands (3)
- Toronto, Canada (3)
- Vancouver, Canada (4)
Embed Games on Your Site
Have a website for your local Ultimate community? Want to embed the games from PickupUltimate.com on your site? It's easy, just follow these steps:
- Find the latitude and longitude for your city (you can use this tool to help).
- Include some markup and JavaScript on your site:
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="https://pickupultimate.com/js/embed_map?lat=YOUR_LATITUDE_HERE&lng=YOUR_LONGITUDE_HERE"></script>
<div id="pickupultimate_gmap2"></div>
Please note: the <div id="pickupultimate_gmap2"></div>
is required.
You can also pass a radius
and zoom
parameter to the script to adjust the map as required.
Examples:
Houston, latitude 29.759609, longitude -95.362701, zoom of 10 (default), all the games in a 60 mile radius
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="https://pickupultimate.com/js/embed_map?lat=29.759609&lng=-95.362701&radius=60"></script>
<div id="pickupultimate_gmap2" style="width:100%; height:600px"></div>
Colorado Springs, latitude 38.833882, longitude -104.821363, zoom of 12, all the games in a 50 mile radius (default)
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="https://pickupultimate.com/js/embed_map?lat=38.833882&lng=-104.821363&zoom=12"></script>
<div id="pickupultimate_gmap2"></div>
Send me an email if you need help getting this set up.