Skip to main content

How to get next value from map based on dynamic key value in JavaScript?

 Get next value from map based on dynamic key value in JavaScript:

The below mapData is a map/object contains place as key and an object (longitude & latitude) as value.

We need to get the value, object of the map. The below snippet we can use to get the solutions for it.


var mapData = {

                 "Brandenburg Gate, Berlin": {latitude: 52.516272, longitude: 13.377722},

                 "Dortmund U-Tower": {latitude: 51.515, longitude: 7.453619},

                 "London Eye": {latitude: 51.503333, longitude: -0.119722},

                 "Kremlin, Moscow": {latitude: 55.751667, longitude: 37.617778},

                 "Eiffel Tower, Paris": {latitude: 48.8583, longitude: 2.2945},

                 "Riksdag building, Stockholm": {latitude: 59.3275, longitude: 18.0675},

                 "Royal Palace, Oslo": {latitude: 59.916911, longitude: 10.727567}

              };

Object.keys(mapData).forEach(function(key){

    var value = mapData[key];

    console.log(value);
    //console.log(value.longitude);// we can get Longitude
    //console.log(value.latitude);//we can get Latitude

});

Output:
In output we will get an object which contains longitude & latitude.





Hey user,
Thank you for studying the blog
Please comment if any error/ suggestions found for above data.

Comments

Popular posts from this blog

How to get list item entity type full name of a SharePoint list using REST API ?

REST API to get list item entity type full name: Bullet method (small and accurate): siteurl( AbsoluteUrl ) + /_api/Web/Lists/getbytitle('ListName')/ListItemEntityTypeFullName or   _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists/getbytitle('SPList')/items?select=EntityTypeFullName **Use this above API just replacing absolute site URL and list name **Then put this prepared URL into browser and press enter button and obtain list entity type full name of related list. **You will get ListEntityTypeFullName like " SP.Data.EmployeeListItem " **Employee(may be a list name) How it is? Is it working or not you can tell us using comment section ?

How to send email using SharePoint REST API in jQuery/JavaScript?

  Send email using SharePoint REST API in jQuery/JavaScript: We can able to send email to the SharePoint user using below REST API on SharePoint Online. We need to load SP.js file in code. we must need to give valid SharePoint user to send email. We can able to send email to valid SharePoint user of same organization.      var   restAPI  =  _spPageContextInfo . webAbsoluteUrl  +  "/_api/SP.Utilities.Utility.SendEmail" ;      $ . ajax ({          contentType:   'application/json' ,          url:   restAPI ,          type:   "POST" ,          data:   JSON . stringify ({              'properties' :  {             ...