0
votes
3answers
46 views
Optimizing map drawing
Hello, I have problem optimizing drawing Google-like map. It works OK for hundreds of points, but when it comes to larger amounts like thousands it gets fuzzy and slow. Also unzoomed it looks weird.
…
2
votes
1answer
34 views
Why <C-PageUp> and <C-PageDown> not work in vim?
I have vim 7.2 installed in my windows. In gvim, the and works for navigation among tabs by default. However, it doesn't work for vim.
Even I have below lines in _vimrc added. It still not work.
…
1
vote
0answers
22 views
adding a map overlay on a UK Ordnance Survey OpenSpace map
Does anyone have a code example of how to add an image overlay to an Ordnance Survey OpenSpace map?
The documentation is not exactly comprehensive :)
Thanks!
1
vote
2answers
55 views
When should I use ConcurrentSkipListMap?
In Java, ConcurrentHashMap is there for better multithreading solution. Then when should I use ConcurrentSkipListMap? Is it a redundancy?
Does multithreading aspects between these two are common?
0
votes
6answers
93 views
How to use an Interface as Map’s Key
I am looking for help on the subject how to use an Interface as Maps Key. I tried to implement a solution, and get no compiletime errors but runtime errors when running my integration tests. Is it not …
2
votes
7answers
119 views
Making map::find operation case insensitive
Does the map::find method support case insensitive search?
I have a map as follows
map<string,vector<string> > directory;
and want the below search to ignore case.
…
0
votes
4answers
78 views
[C++] Map functions of a class while declaring the functions
Hi,
My previous question about this subject was answered and I got some tests working nice.
http://stackoverflow.com/questions/1786809/c-map-functions-of-a-class
My question is now, if there is a …
0
votes
5answers
99 views
[C++] Map functions of a class
Hi!
Before I was trying to map my classes and namespaces, by using static calls I succeded and now I need to map the functions of my classes because they will be used dinamically.
Firstly I was …
0
votes
1answer
9 views
Google Map API: How to center dynamicly markers in AS3?
I have several markers on my map and want to center dynamily each time I click on a selected point which show a bunch of markers group.
Does anyone know how to do that in As3?
3
votes
5answers
102 views
Efficient algorithm to remove any map that is contained in another map from a collection of maps.
I have set (s) of unique maps (Java HashMaps currently) and wish to remove from it any maps that are completely contained by some other map in the set (i.e. remove m from s if m.entrySet() is a proper …
-2
votes
1answer
83 views
Is there an algorithm that can help remember a map? [closed]
When I'm faced with too many locations,I just can't remember them.
Is there an algorithm can help?
0
votes
0answers
9 views
Extracting path data from an SVG map to use in RaphaelJs
I'm trying to build an an interactive map using RaphaelJS (e.g. http://raphaeljs.com/australia.html). Please check the source. It requires map path data to input. There is no clear explanation …
0
votes
5answers
111 views
F#: Storing and mapping a list of functions
I have a number of events that happen in a game. I want to control the time and order at which these events occur.
For example:
Event 1: Show some text on screen for N frames & play a sound …
1
vote
1answer
33 views
Visual C++ Express, the debugger, sorted associative containers and memory deallocation
So you have this simple program that creates a set from a file :
#include <fstream>
#include <string>
#include <set>
int main()
{
std::set<std::string> Sdictionnary;
…
0
votes
0answers
26 views
Embed font into PDf file by using iText
Hi,
I defined a tag map, and got a xml data file. I want to convert the xml data file to PDF by using iText. The question is how to embed fonts (e.g. polish font, chinese font) into target PDF when …
