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.

The Antenna Point App

Find the best direction to aim your HDTV antenna with our NEW app!

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

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

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
Latest Posts
Article information

Author: The Hon. Margery Christiansen

Last Updated:

Views: 6125

Rating: 5 / 5 (50 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: The Hon. Margery Christiansen

Birthday: 2000-07-07

Address: 5050 Breitenberg Knoll, New Robert, MI 45409

Phone: +2556892639372

Job: Investor Mining Engineer

Hobby: Sketching, Cosplaying, Glassblowing, Genealogy, Crocheting, Archery, Skateboarding

Introduction: My name is The Hon. Margery Christiansen, I am a bright, adorable, precious, inexpensive, gorgeous, comfortable, happy person who loves writing and wants to share my knowledge and understanding with you.