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)

References

Top Articles
The Best Head Gasket Sealer 2023 | Tried & Tested | UK Reviews
What is the best head gasket sealer - GARAGE BEAST
Barstool Sports Gif
Cappacuolo Pronunciation
Gomoviesmalayalam
Algebra Calculator Mathway
Math Playground Protractor
Georgia Vehicle Registration Fees Calculator
Pbr Wisconsin Baseball
Mlifeinsider Okta
Culver's Flavor Of The Day Monroe
Günstige Angebote online shoppen - QVC.de
123Moviescloud
California Department of Public Health
Kris Carolla Obituary
Otterbrook Goldens
Google Flights Missoula
Rugged Gentleman Barber Shop Martinsburg Wv
Sussur Bloom locations and uses in Baldur's Gate 3
Canvasdiscount Black Friday Deals
Craigslist Illinois Springfield
Stihl Dealer Albuquerque
Mythical Escapee Of Crete
Kentuky Fried Chicken Near Me
Craigslist Lake Charles
Hdmovie2 Sbs
Die 8 Rollen einer Führungskraft
5 Star Rated Nail Salons Near Me
Inmate Search Disclaimer – Sheriff
Emiri's Adventures
Memberweb Bw
Petsmart Distribution Center Jobs
Ark Unlock All Skins Command
Flashscore.com Live Football Scores Livescore
Powerspec G512
Restored Republic December 9 2022
Cl Bellingham
Columbia Ms Buy Sell Trade
Flags Half Staff Today Wisconsin
Mid America Irish Dance Voy
sacramento for sale by owner "boats" - craigslist
Oppenheimer Showtimes Near B&B Theatres Liberty Cinema 12
Conan Exiles Armor Flexibility Kit
Avance Primary Care Morrisville
Reilly Auto Parts Store Hours
Boyfriends Extra Chapter 6
Bbwcumdreams
Westport gun shops close after confusion over governor's 'essential' business list
Wera13X
786 Area Code -Get a Local Phone Number For Miami, Florida
Ark Silica Pearls Gfi
Used Curio Cabinets For Sale Near Me
Latest Posts
Article information

Author: Dong Thiel

Last Updated:

Views: 6237

Rating: 4.9 / 5 (59 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Dong Thiel

Birthday: 2001-07-14

Address: 2865 Kasha Unions, West Corrinne, AK 05708-1071

Phone: +3512198379449

Job: Design Planner

Hobby: Graffiti, Foreign language learning, Gambling, Metalworking, Rowing, Sculling, Sewing

Introduction: My name is Dong Thiel, I am a brainy, happy, tasty, lively, splendid, talented, cooperative person who loves writing and wants to share my knowledge and understanding with you.