Antennas Direct | TV Transmitter Locator and Mapping Tool (2024)

Our mapping tool will allow you to view the TV transmitters in your area. Using this tool, you will see the radius patterns showing the distance ofcoverage between your location and the broadcast towers. The towers are shown by black markers on the map, and you can click on each tower to see the affiliate, band, latitude, longitude, and heading for each transmitter. Certain variables unrelated to the antennas performance can affect reception, such as terrain, tall buildings, and trees. Call our Connection Crew or chat with us online if you need assistance with choosing the best TV antenna for your location.

Tips for the Transmitter Locator Tool

  1. Check to see if the digital channels in your area broadcast on the UHF or VHF band. Look at the column heading in dark blue for UHF or VHF. If the Affiliate channels are for high-frequency VHF stations (Channels 7 – 13), you will need a VHF antenna. Check out our ClearStream 1MAX, ClearStream 2MAX or ClearStream 4MAX HDTV antennas based on their range. For UHF (Channels 14 - 51), you will receive crystal clear reception with any of our other antennas.
  2. Determine how far your antenna will be from the transmitters. Use the Heading listed in the results below and a compass to aim your antenna towards the towers. The antenna you choose should be based on the tower located farthest from your location.
  3. You might need a uni-directional or multi-directional antenna. In some cities like New York, Chicago and Los Angeles, all stations are broadcast from one central area; the Empire State and GE Buildings in New York, the Sears Tower or Hanco*ck Building in downtown Chicago, and Mt. Wilson in Los Angeles. In other cities like St. Louis, the transmitters are scattered around the city. Check the Black markers on the map, and if all of your desired stations are transmitting from the same area or within 20° of each other, you can use a uni-directional antenna: Check out the Element Uni-directional long range antenna. If the transmitters are positioned more than 20° apart, it is best to use a multi-directional antenna. All of our antennas indicate whether they are a uni-directional or multi-directional antenna.

"; //show info window google.maps.event.addListener(marker, "click", function() { infoWindow.setContent(getmyzip); infoWindow.open(map, marker); }); if (circles) { //add the mileage radius circles circle1 = new google.maps.Circle({ map: map, //radius: 104607, //65 miles in metres, radius: 112654, //70 miles in metres fillColor: "#AA0000", strokeWeight: 1, strokeColor: "#0000A0", strokeOpacity: "0.4" }); circle1.bindTo("center", marker, "position"); circle2 = new google.maps.Circle({ map: map, radius: 80467.2, //50 miles in metres fillColor: "#BBFF00", strokeWeight: 1, strokeColor: "#0000A0", strokeOpacity: "0.4" }); circle2.bindTo("center", marker, "position"); circle3 = new google.maps.Circle({ map: map, radius: 56327, //35 miles in metres fillColor: "#EEAAFF", strokeWeight: 1, strokeColor: "#0000A0", strokeOpacity: "0.4" }); circle3.bindTo("center", marker, "position"); } $("#radius").on("change", function() { //show/hide circles if ($("#radius").prop("checked") == true) { //circle1.setRadius(504607); circle1.setRadius(104607); circle2.setRadius(80467.2); circle3.setRadius(56327); console.log("testing success"); } if ($("#radius").prop("checked") == false) { circle1.setRadius(0); circle2.setRadius(0); circle3.setRadius(0); } }); if (lattytude != "") { newcoords = newcoords.toString().replace(/\(|\)/g, ""); newzippy = newcoords.split(","); } else if (addy != "") { //only if addy is not empty 10-26-17 addycoords = addycoords.toString().replace(/\(|\)/g, ""); newzippy = addycoords.split(","); } else { //get coords from our database with the zip code entered by user zippyLocation = getitright.toString().replace(/\(|\)/g, ""); // 5-23-18 newzippy = zippyLocation.split(","); } $.getJSON("custom/transmitter-combo-query.php?zip=" + xippy + "&latty=" + latbyzip + "&longy=" + lngbyzip + "&action=mapping", function(json1) { //draw lines if (lines) { line = []; $.each(json1, function(key, data) { polyline = new google.maps.Polyline({ path: [new google.maps.LatLng(newzippy[0], newzippy[1]), new google.maps.LatLng(data.lat, data.lng)], strokeColor: "#FF0000", strokeOpacity: 0.7, strokeWeight: 2, geodesic: true, map: map }); line.push(polyline); }); } $.each(json1, function(key, data) { //show the transmitters latLng = new google.maps.LatLng(data.lat, data.lng); getmycity = data.city; getmycallsign = data.call_sign; getmystate = data.state; getmyband = data.channel; if (getmyband >= 2 && getmyband <= 13) { getmyband = "VHF"; } if (getmyband >= 14) { getmyband = "UHF"; } var start = new google.maps.LatLng(latbyzip, lngbyzip); var end = new google.maps.LatLng(data.lat, data.lng); var heading = google.maps.geometry.spherical.computeHeading(start, end); if (heading < 0) { heading = heading + 360 } getmycontent = "

" + getmycallsign + " " + getmycity + ", " + getmystate + "
Band: " + getmyband + "
Lat: " + data.lat + "
Lng: " + data.lng + "
True Heading: " + heading.toFixed(2) + "°

"; transmarker = new google.maps.Marker({ clickable: true, position: latLng, title: data.city, icon: { path: google.maps.SymbolPath.CIRCLE, scale: 8.5, fillColor: "#000000", fillOpacity: 0.6, strokeWeight: 0.4 } }); transmarker.setMap(map); google.maps.event.addListener(transmarker, "click", (function(transmarker, getmycontent, infoWindow) { //display infowindow for transmitters return function() { infoWindow.setContent(getmycontent); infoWindow.open(map, transmarker); }; })(transmarker, getmycontent, infoWindow)); }); }); //show/hide lines $("#lines").on("change", function() { if ($("#lines").prop("checked") == true) { for (i = 0; i < line.length; i++) { line[i].setVisible(true); } } if ($("#lines").prop("checked") == false) { for (i = 0; i < line.length; i++) { line[i].setVisible(false); } } }); //*************GET TV LISTINGS****************** var dataString = "zip=" + xippy + "&latty=" + latbyzip + "&longy=" + lngbyzip + "&action=tvlisting"; //alert(dataString); $.ajax({ type: "POST", data: dataString, url: "custom/transmitter-combo-query.php", success: function(response) { $("#success").html(response); } }); //*************GET RECOMMENDED ANTENNAS****************** var dataString = "zip=" + xippy + "&latty=" + latbyzip + "&longy=" + lngbyzip + "&action=antennas"; $.ajax({ type: "POST", data: dataString, url: "custom/transmitter-combo-query.php", success: function(response) { $("#suggestions").html(response); } }); // thisUrl.searchParams(xippy); return false; } //ends doOtherStuffWithAddress function return false; }); // end $(document).on("click", "#submit", function() { });

If you need further assistance with choosing the best digital TV antenna for your location, call our Connection Crew or use our Contact Form.

Antennas Direct | TV Transmitter Locator and Mapping Tool (2024)
Top Articles
Complete PCSO Lotto Results June 14, 2024
Gold Weight to Price Calculator - ccalculator.co.in
Wmaz 13
Words With Friends Cheat Board Layout 11X11
Incredibox Deluxe
Hallmark White Coat Ceremony Cards
Growing At 495%, Saviynt Says It Prevails Over SailPoint In $20B Market
Phun.celeb
Everything You Might Want to Know About Tantric Massage - We've Asked a Pro
Kcrubicon
New Stores Coming To Canton Ohio 2022
gameplay:shiny_pokemon_and_luck [PokéRogue Wiki]
Milk And Mocha Bear Gifs
Aita For Helping My Girlfriend Get Over Her Trauma
Clarita Amish Auction 2023
Justine Waddell talks about a season of screenings MELODIA!
The Obscure Spring Watch Online Free
Craigslist Westchester Cars For Sale By Owner
Gncc Live Timing And Scoring
Suman Gharti on LinkedIn: Yashoda [2022] Hindi Dubbed Full Movie In 4K UHD | Samantha, Unni…
159R Bus Schedule Pdf
Open jazz : podcast et émission en replay | France Musique
Blackboard Qcc
Minneapolis, MN Real Estate & Homes for Sale | realtor.com®
HRConnect Core Applications
Midsommar 123 Movies
How To Level Up Intellect Tarkov
Lucky Dragon Net
REGULAMENTUL CAMPANIEI "Extra Smart Week" valabil in perioada 12-18 septembrie 2024
2005 Chevy Colorado 3.5 Head Bolt Torque Specs
Cal Poly 2027 College Confidential
Ethos West Mifflin
San Bernardino Pick A Part Inventory
Are Swagg And Nadia Dating? The Streamers Appear More Than Friends - Eliktopia
Super Restore Vs Prayer Potion
Sky Nails Albany Oregon
Harry Potter 3 123Movies
Embu village mines precious coltan for years 'without knowing its value’
Crazy 8S Cool Math
Brian Lizer Life Below Zero Next Generation
Liv Morgan Wedgie
Exterior Ballistics Calculator
Acbl Homeport
Everything 2023's 'The Little Mermaid' Changes From the Original Disney Classic
Arrival – AIRPOWER24 6th – 7th Sept 24
The Stock Exchange Kamas
Alibaba Expands Membership Perks for 88VIP
Riscap Attorney Registration
Kaiju Universe: Best Monster Tier List (January 2024) - Item Level Gaming
Nine Star Hegemon Body Art
Eugenics Apush
Latest Posts
Article information

Author: Maia Crooks Jr

Last Updated:

Views: 6561

Rating: 4.2 / 5 (43 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Maia Crooks Jr

Birthday: 1997-09-21

Address: 93119 Joseph Street, Peggyfurt, NC 11582

Phone: +2983088926881

Job: Principal Design Liaison

Hobby: Web surfing, Skiing, role-playing games, Sketching, Polo, Sewing, Genealogy

Introduction: My name is Maia Crooks Jr, I am a homely, joyous, shiny, successful, hilarious, thoughtful, joyous person who loves writing and wants to share my knowledge and understanding with you.