Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6196685
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:41:14+00:00 2026-05-24T03:41:14+00:00

I was currently at this site which shows how to implement business search using

  • 0

I was currently at this site which shows how to implement business search using the bing map api. But what I am trying to implement is, first the map should get your current location and search for type of business nearby, let’s say Restaurant or Check Cashing place.
My current page has the current location working but now how I implement the FindNearBy function with my page?

P.s. I want the search to already take place for the user without having to enter a search text, so the map should load up with current location and right next to it should list all or maybe the closest 5 restaurant nearby.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T03:41:15+00:00Added an answer on May 24, 2026 at 3:41 am

    Not with Bing Maps…you need the Bing Phonebook API to do this.

    I can get you part of the way there. The below example combines the use of both the Bing Maps API and the Bing Phonebook API) I just submitted a similar question about how to find the type of business, however…I’m not sure there’s a wayto do this :/ (Below example searches for all Starbucks in the area …of course, some HTML integration is required.

    var _map;
    var _appId;
    
    $(document).ready(function () {
        if (Modernizr.geolocation) {
            $(".geofallback").hide();
        }
        else {
            $(".geofallback").show();
        }
        $.post("Home/GetBingMapsKey", { "func": "GetBingMapsKey" }, function (data) {
            // Create a Bing map
            _map = new Microsoft.Maps.Map(document.getElementById("map"),
                { credentials: data }); //, mapTypeId: Microsoft.Maps.MapTypeId.ordnanceSurvey
        });
    
        // Get the current position from the browser
        if (!navigator.geolocation) {
            $("#results").html("This browser doesn't support geolocation, please enter an address");
        }
    else {
            $.post("Home/GetBingKey", { "func": "GetBingKey" }, function (data) {
                _appId = data;
            });
            navigator.geolocation.getCurrentPosition(onPositionReady, onError);
            navigator.geolocation.getCurrentPosition(Search, onError);
        }
    });
    
    function onPositionReady(position) {
    
        // Apply the position to the map
        var location = new Microsoft.Maps.Location(position.coords.latitude,
                position.coords.longitude);
    
        _map.setView({ zoom: 18, center: location });
    
        // Add a pushpin to the map representing the current location
        var pin = new Microsoft.Maps.Pushpin(location);
        _map.entities.push(pin);
    
    }
    
    function onError(err) {
        switch (err.code) {
            case 0:
                alert("Unknown error :(");
                break;
            case 1:
                alert("Location services are unavailable per your request.");
                break;
            case 2:
                alert("Location data is unavailable.");
                break;
            case 3:
                alert("The location request has timed out. Please contact support if you continue to experience issues.");
                break;
        }
    }
    
    function Search(position) {
              // note a bunch of this code uses the example code from
              // Microsoft for the Phonebook API
        var requestStr = "http://api.bing.net/json.aspx?"
    
            // Common request fields (required)
            + "AppId=" + _appId
            + "&Query=starbucks"
            + "&Sources=Phonebook"
    
            // Common request fields (optional)
            + "&Version=2.2"
            + "&Market=en-us"
            + "&UILanguage=en"
            + "&Latitude=" + position.coords.latitude
            + "&Longitude=" + position.coords.longitude
            + "&Radius=100.0"
            + "&Options=EnableHighlighting"
    
            // Phonebook-specific request fields (optional)
    
            // Phonebook.Count max val is 25
            + "&Phonebook.Count=25"
            + "&Phonebook.Offset=0"
            // YP = Commercial Entity, WP = Residential
            + "&Phonebook.FileType=YP"
            + "&Phonebook.SortBy=Distance"
    
            // JSON-specific request fields (optional)
            + "&JsonType=callback"
            + "&JsonCallback=?";
    
        $.getJSON(requestStr, function (data) {
            SearchCompleted(data);
        });
    }
    
    function FormatBingQuery(appId, latitude ) {
    }
    
    function SearchCompleted(response) {
        var errors = response.SearchResponse.Errors;
        if (errors != null) {
            // There are errors in the response. Display error details.
            DisplayErrors(errors);
        }
        else {
            // There were no errors in the response. Display the
            // Phonebook results.
            DisplayResults(response);
        }
    }
    
    function DisplayResults(response) {
    
        var output = document.getElementById("output");
        var resultsHeader = document.createElement("h4");
        var resultsList = document.createElement("ul");
        output.appendChild(resultsHeader);
        output.appendChild(resultsList);
    
        var results = response.SearchResponse.Phonebook.Results;
    
        // Display the results header.
        resultsHeader.innerHTML = "Bing API Version "
                + response.SearchResponse.Version
                + "<br />Phonebook results for "
                + response.SearchResponse.Query.SearchTerms
                + "<br />Displaying "
                + (response.SearchResponse.Phonebook.Offset + 1)
                + " to "
                + (response.SearchResponse.Phonebook.Offset + results.length)
                + " of "
                + response.SearchResponse.Phonebook.Total
                + " results<br />";
    
        // Display the Phonebook results.
        var resultsListItem = null;
        var resultStr = "";
        for (var i = 0; i < results.length; ++i) {
            resultsListItem = document.createElement("li");
            resultsList.appendChild(resultsListItem);
                        //loc is specific to my C# object
            var loc = new Array();
            loc[0] = results[i].Longitude;
            loc[1] = results[i].Latitude;
    
            var address = {
                AddressLine1: results[i].Address,
                City: results[i].City,
                State: results[i].StateOrProvince,
                PostalCode: results[i].PostalCode,
                Latitude: results[i].Latitude,
                Longitude: results[i].Longitude,
                Country: results[i].CountryOrRegion,
                ID: results[i].UniqueId
            };
                        //this part is specific to my project to return the 
                        //address results so I can store them (since my
                        //implementation is a demonstration of how to 
                        //use the MongoDB geoNear() functionality
            $.ajax({
                url: "/Home/AddAddressToCollection",
                type: 'post',
                data: JSON.stringify(address),
                contentType: 'application/json',
                dataType: 'json'
            });
    
            resultStr = results[i].Business
                    + "<br />"
                    + results[i].Address
                    + "<br />"
                    + results[i].City
                    + ", "
                    + results[i].StateOrProvince
                    + "<br />"
                    + results[i].PhoneNumber
                    + "<br />Average Rating: "
                    + results[i].UserRating
                    + "<br /><br />";
    
            // Replace highlighting characters with strong tags.
            resultsListItem.innerHTML = ReplaceHighlightingCharacters(
                    resultStr,
                    "<strong>",
                    "</strong>");
        }
    }
    
    function ReplaceHighlightingCharacters(text, beginStr, endStr) {
        // Replace all occurrences of U+E000 (begin highlighting) with
        // beginStr. Replace all occurrences of U+E001 (end highlighting)
        // with endStr.
        var regexBegin = new RegExp("\uE000", "g");
        var regexEnd = new RegExp("\uE001", "g");
    
        return text.replace(regexBegin, beginStr).replace(regexEnd, endStr);
    }
    
    function DisplayErrors(errors) {
        var output = document.getElementById("output");
        var errorsHeader = document.createElement("h4");
        var errorsList = document.createElement("ul");
        output.appendChild(errorsHeader);
        output.appendChild(errorsList);
    
        // Iterate over the list of errors and display error details.
        errorsHeader.innerHTML = "Errors:";
        var errorsListItem = null;
        for (var i = 0; i < errors.length; ++i) {
            errorsListItem = document.createElement("li");
            errorsList.appendChild(errorsListItem);
            errorsListItem.innerHTML = "";
            for (var errorDetail in errors[i]) {
                errorsListItem.innerHTML += errorDetail
                        + ": "
                        + errors[i][errorDetail]
                        + "<br />";
            }
    
            errorsListItem.innerHTML += "<br />";
        }
    } 
    
        // Bonus: In case you want to provide directions
        // for how to get to a selected entity
    
        //            _map.getCredentials(function (credentials) {
        //                $.getJSON('http://dev.virtualearth.net/REST/V1/Routes/driving?' + 'wp.0=' + lat1 + ',' + lon1 + '&wp.1=' + lat2 + ',' + lon2 + '&distanceUnit=mi&optmz=distance&key=' + credentials + '&jsonp=?&s=1',
        //                function (result) {
        //                    if (result.resourceSets[0].estimatedTotal > 0) {
        //                        var distance = result.resourceSets[0].resources[0].travelDistance;
        //                    }
        //                    else {
        //                        $("#results").html("Oops! It appears one or more of the addresses you entered are incorrect. :( ");
        //                    }
        //                });
        //            });
    
    //Tie into a function that shows an input field
    //for use as a fallback in case cannot use HTML5 geoLocation
    //$(document).ready(function () {
    //    $("#btnFindLocation").click(function () {
    //        //check user has entered something first
    //        if ($("#txtAddress").val().length > 0) {
    //            //send location query to bing maps REST api
    //            _map.getCredentials(function (credentials) {
    //                $.getJSON('http://dev.virtualearth.net/REST/v1/Locations?query=' + $("#txtAddress").val() + '&key=' + credentials + '&jsonp=?&s=1', 
    //                    function (result) {
    //                        if (result.resourceSets[0].estimatedTotal > 0) {
    //                            var loc = result.resourceSets[0].resources[0].point.coordinates;
    //                            $("#lat").val(loc[0]);
    //                            $("#lon").val(loc[1]);
    //                            var location = new Microsoft.Maps.Location(loc[0],
    //                                loc[1]);
    //                            _map.setView({ zoom: 18, center: location });
    //                            // Add a pushpin to the map representing the current location
    //                            var pin = new Microsoft.Maps.Pushpin(location);
    //                            _map.entities.push(pin);
    //                        }
    //                        else {
    //                            $("#results").html("sorry that address cannot be found");
    //                        }
    //                });
    //            });
    //        }
    //        else {
    //            $("#results").html("please enter an address");
    //        }
    //    });
    //});
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have this working but it requires me to have a static method
I do not currently have this issue , but you never know, and thought
I am currently testing this in Mozilla FireFox 3.0.5 using FireBug 1.3.0 with jQuery
I'm currently using this jQuery validate plugin and having an issue in IE where
I am trying to check out SLF4J-Simple from GitHub which shows the actual source
I'm currently writing a site which uses django-guardian to assign object-level permissions which are
Preamble So, this question has already been answered, but as it was my first
Thanks for all the questions and responses posted on here. This site usually shows
I'm currently trying to edit a website for a client which uses Adobe Contribute
I've added a bottom toolbar using a ToolbarManager which shows in the 9800 and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.