A map is a data structure relating keys to values, or a higher order function that applies a function to a list

learn more… | top users | synonyms

0
votes
0answers
3 views

SSRS 2012 map rendering performance

I have a report with four maps using four datasets. The report is cached and produces the following stats from the executionlog table. TimeDataRetrieval=0 TimeProcessing=20 TimeRendering=2530 ...
1
vote
1answer
28 views

Why can you not return an object to Javascript's Array.map() and it map it properly?

I have two functions below (they are taken out of a larger script so assume everything is defined etc. self.sentenceObjs works great. It returns an object exactly like it's supposed to do. ...
0
votes
0answers
9 views

Draw 32x32 Tiled Images in QT

I'm curious to learn how to split an image into 32x32 (or really any size) selectable tiles and display them in Qt? An example is the Tiled Map Editor (the panel in the lower right corner of the ...
0
votes
1answer
37 views

How to uniform initialize map of unique_ptr?

I have this code to initialize map from into to unique_ptr. auto a = unique_ptr<A>(new A()); map<int, unique_ptr<A>> m; m[1] = move(a); Can I use uniform initialize this? I tried ...
0
votes
1answer
15 views

Google Map Infowindow Not Appearing Properly

I have a standard Google Map Infowindow being opened on click on a standard Google Marker. The arrow pointing down to the marker seems to be a couple of pixels off. I have been banging my head against ...
2
votes
2answers
45 views

C Function Macro Of Node

I am trying to make a node that can accept any key value types. So far it works when I use it once, but when I use it another time, I get errors. Below are the codes I've written: map.h: #ifndef ...
2
votes
3answers
61 views

insert vs emplace vs operator[] in c++ map

I'm using maps for the first time and I realized that there are many ways to insert an element. You can use emplace(), operator[] or insert(), plus variants like using value_type or make_pair. While ...
1
vote
1answer
30 views

pair(const std::pair<_T1, _T2>&) is implicitly deleted because the default definition would be ill-formed Error: when assigning map of unique_ptr

I'm trying to set a map of unique_ptr with a method. class A { map<int, unique_ptr<B>> x; public: void setx(const map<int, unique_ptr<B>>& x) {this->x = x;} // ...
4
votes
1answer
34 views

Remove connecting lines in ggplot2 geom_polygon

I've made the map below by subsetting a shapefile downloaded from www.gadm.org : load(url('http://gadm.org/data/rda/GBR_adm0.RData')) library(ggplot2) ukMapFort <- fortify(gadm) ukMapFortSub <- ...
0
votes
0answers
10 views

how plot this kind of gis map, part of map but has limitaion

how to plot something like this: see image here, I didn't have 10 reputation so I can not post image, so paste a image URL here. http://img.dxycdn.com/upload/2011/11/03/40/88524524.jpg right part ...
0
votes
1answer
10 views

How can I show tweets on a map in Processing?

I have been trying to use a map to show locations of tweets (from Streaming API) in Processing. But I haven't found any good resource/tutorial. Will anyone help me please?
0
votes
1answer
17 views

Issue with HashMap<String,Marker> in android

I want to keep track of markers on the map. When a particular marker is clicked, I need to display the info regarding to that marker. I am using one HashMap variable to keep track of the markers ...
3
votes
1answer
45 views

animated gadm map in R

everybody, sorry for disturb, but I am being quite new with r faced a crucial difficuty: I want to create an animated map of Russin with changes in unemployment with differnt years, like. To start ...
0
votes
1answer
42 views

Multiple mapping of arrays within arrays - Ruby [closed]

I want to go through an array in an array with arrays in those. The array should contain 5 arrays, and in each of those arrays are five more arrays, the generation of the numbers is fine, but when I ...
1
vote
3answers
42 views

How to put values in Map which is within a Map

How do I put values in this map? public static Map<String, TreeMap<String, SomeClass>> myMap=Collections.synchronizedMap(new TreeMap<String, TreeMap<String,SomeClass>>());
0
votes
1answer
25 views

Use Bing Quadkey tiles instead of x/y/z tiles in leafletjs map

I try to create a map with leaflet.js where it is possible to switch between different tile layers. It works great with tileservers that serve the tiles with the standard x,y and z(oom) schema. ...
1
vote
1answer
27 views

How to read Boost property_map with peer values with identical tag names

I am using the property_map from Boost c++ library v1.53, and its working great for me except I can't figure out how to parse data nodes with the same name that are peers of each other. As in the ...
2
votes
0answers
34 views

Adding scale bar to ggplot map

I've produced this map in ggplot2: library(maptools); library(ggplot2) data(wrld_simpl) world <- fortify(wrld_simpl) worldUk <- subset(world, id=="GBR") ggplot() + geom_path(aes(long, lat, ...
0
votes
0answers
6 views

adding markers to google map from spreadsheet

I want to upload my excel spreadsheet of longitudes and latitudes onto my website, and then use that file to add those markers to my google maps. is this possible, and if so, how can i accomplish ...
0
votes
3answers
32 views

Android - Google Map doesn't display

Please excuse my bad English, I'm French ! I've got a question about my Android App... I hava to integrate a google map, so I've followed a tutorial (from Google developper website), but when I when ...
1
vote
2answers
44 views

create a map with extensible key values

I would like to create a map with extensible key values. Currently I have a common project which has some enum. In my main project in which I have included the common project as a dependency, I have ...
0
votes
1answer
46 views

Vim - unable to map multiple keys

(it's a new topic whose starting point is this question) To make it short, I think I can't make mapping with 2-keys combination in vim (<key1-key2>, or <A-j> for example). One-key mapping ...
0
votes
1answer
10 views

image map coordinates ms paint for windows 7

help, so frustrated. Brand new so sorry about this question but i can't find the answer for the life of me. I created an image map and have to find the x y coordinates for the clickable areas. The ...
2
votes
1answer
78 views

Doing Map<Key, Map<Key, Set< Class>>> is painful in C++. Is there a better way?

I'm used to Python's development mindset when it comes to organizing data in a hierarchical fashion using maps. It's easy and syntactically cheap. While not extremely difficult in C++, nested ...
0
votes
2answers
29 views

Java: Stacked (layered) maps behind a Map interface?

I need a Map impl which would consist of stacked maps, which I could push() and pop(), and the values would be "added" or "removed" if they belong to the map being pushed/popped. And the values would ...
-1
votes
0answers
31 views

positioning multiple layered images in a responsive layout

Hi Sorry if this has been asked and answered already, But I have not found it if so. I am creating a website where for the homepage has an image of a map of a city, over this image I want to overlay ...
5
votes
2answers
129 views

C++ map of cmath functions

I would like to create a map with the keys being a function name as a string and the value being the function itself. So something like this... #include <cmath> #include <functional> ...
1
vote
0answers
72 views

C++ design: keeping subclasses in a map<string, superclass>

I have a ResourceManager class that is supposed to manage resources (images, sounds, etc.), which are mostly Resource objects which implement a stream interface. I keep them in a ...
6
votes
2answers
94 views

Is it okay to make Integer-keyed Maps in Java?

Just like in title. Is it okay to make something like this: HashMap<Integer, Object> foo = new HashMap<>(); Or maybe there's better container that allow adding values at any index? When ...
-1
votes
4answers
83 views

C++ how to change value of a map element

I have a map with an integer and a class I made. Now I need to change the integer of each element in the list. I thought about sth like this : std::map<int, Product> ProductList; //This is ...
0
votes
0answers
13 views

calling image map links from an svg

I'm trying to do that most common of things- make a clickable image map. I've got the map highlight jquery plugin and with that and using manually coded in co-ordinates I can get shapes and links to ...
0
votes
1answer
25 views

Retrieve Latitude and Longitude from given address [closed]

I have an address with me and I want to retrieve its latitude and longitude using JavaScript. And main criteria is that I want to use HTML 5 Geolocation and not any third party resources like google ...
0
votes
0answers
20 views

windows phone 8 show blank map

I am trying to add a simple map to my app. I added map reference, added capability in WMAppManifest and this code to page: <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"> ...
0
votes
0answers
9 views

QtConcurrent map type issues

I have a function remapTerrain() that accepts a QList<TerrainArray*> and delivers QLIst<TerrainTile*>and I wanted to see if I could use QtConcurrent::blockingMap to make it run on more ...
4
votes
2answers
55 views

Mapping element-wise a NumPy array into an array of more dimensions

I want map a numpy.array from NxM to NxMx3, where a vector of three elements is a function of the original entry: lambda x: [f1(x), f2(x), f3(x)] However, things like numpy.vectorize do not allow ...
0
votes
1answer
24 views

Macro replacement for assignment from map

This (or similar) sometimes seems convinient: #define ITEM_GET(variable,map) variable=map[#variable] //... double foo; std::map<std::string,double> variables; ITEM_GET(foo,variables); Can I ...
-1
votes
0answers
28 views

Vector Maps for iOS?

I'm trying to build a location based game and i want to create a rich map environment for it. For that, im looking at technologies that would deliver vector map data onto my device which i can use to ...
0
votes
1answer
41 views

using map(int, raw_input().split())

Though I like python very much, When I need to get multiple integer inputs in the same line, I prefer C/C++. If I use python, I use: a = map(int, raw_input().split()) Is this the only way or is ...
0
votes
0answers
13 views

Hive Nested Map Types

I am new to Hive, but based on all documentation I could find on the web, my syntax is correct but for some reason I am unable to access entries in my map. I have a map in a table that I've created ...
1
vote
1answer
41 views

MKMapView in a UITableViewCell

I know that this is a common question; but the answers were not satisfying my demands. I trying to have a mapView in my tableview cell and I can do this; however when I scroll the map start to reload ...
2
votes
1answer
48 views

Groovy/Java map sort

I have percentage values in map with flags, like- [44.4: true, 0.0: false, 44.4: false, 38.9: false, 0.0 false] I want to sort them in descending order. The code that I'm using loses the duplicate ...
0
votes
1answer
24 views

Users of an application on a map

I have seen some applications that display on a map the users who have the application in use or installed. I'd like to implement something like this in my project, the problem is I do not know where ...
-1
votes
1answer
17 views

how to show icon in google map by coordinates [closed]

I am using following to show location in Google Map. ...
-1
votes
0answers
17 views

Leafletjs: Getting multiple paths between two locations [closed]

How can I find multiple paths between two given locations (in terms of latitude and longitude) and display them on the map? I am using leafletjs.
0
votes
0answers
17 views

Google Map Api Restrictions and Limits

I have searched for an answer. I understood something, but not entirely. So here is my question; As I understand, if I use Javascript for geocoding or drawing the route they are limited to 2500 ...
0
votes
0answers
8 views

AcrView suddenly closed

So I was installing arcview GIS 3.3 in my 64-bit operating system computer. my OS is Windows 7. first time I open the application, it works fine so I start editing my maps. but suddenly after about a ...
1
vote
2answers
40 views

Parentheses signification in the function map (OCaml)

I have a simple fonction that represents the function map : let f a b = fold_right (fun x y -> a(x)::y) b [] I would like to know the signification of the parentheses for a(x)::y thanks!
0
votes
1answer
17 views

php memcache to store repeated keys for different values

I've been working with PHP (I'm very new to this) and I have this scenario: I have a list with 3 (or more) IP addresses + ports that comes from a file, so each line of my file has: 192.168.3.41:8013 ...
0
votes
1answer
26 views

Is there any free iOS SDK for syling maps?

I'm searching a free SDK for coloring maps (Not markers, but entire map). I found Mapbox and ArcGIS, but I want to know if there's a free alternative with Google Maps integration. Or this is posible ...
-3
votes
0answers
17 views

How can i make timezone map with html+javascript [closed]

I'm designing a map like this one on this link: http://www.timeanddate.com/time/map/. In this map, each of red dots and grey shaded areas popping up when mouse-over the red dots- are in separated ...

1 2 3 4 5 134