map

Scala best way of turning a Collection into a Map-by-key? (2nd variant)

(This is a variant to this Q&A) Say I have this: List( "foo", "bar", "spam" ) I want to create a Map for which the key is the length of the String and the value is a Collection of all the Strings that have that length. In other words, given the about List, we'd get: Map( 3 -> List(foo, bar), 4 -> List(spam) ) The code I've written...

How solve internet explorer cannot open site http://www.xyz.com/map.htm operation aborted?

Hi, I have used google map. When i go to link www.xyz.com/view_map.html no problem for firefox but for IE error message is displayed like this (internet explorer cannot open site http://www.xyz.com/view_map.html operation aborted). Is there any solution for this. Thanks in advance ...

Ordered List Map implementation in Java

I was wandering if there is a class out there that implements both Map and List interfaces in Java. I have a data structure that is primarily a Map. I map strings (IDs) to Images. But in a specific part of my code i need to present the user with all the available IDed Images. The only way to do that so far is to write this : for (Stri...

Wicket: Openlayers Integration & Open Streetmaps Layer

I want to include a open-street-map widget into my apache wicket application. Im using the wicket-contrib-openlayers component from wicket-stuff and the following code: List<Layer> layers = new ArrayList<Layer>(); Layer layerOSMTilesAtHome = new OSM("Osmarender", OSMLayer.TilesAtHome); Layer layerOSMMapnik = new OSM("Mapnik", OSMLaye...

C++ Map cant insert with pair

Why I cant insert like here? #include <map> struct something { } some_object; typedef std::map<std::string, something*> list; typedef std::pair<std::string, something*> pair; int main() { list l; pair p("abc", &some_object); // working fine!!! l.insert(p); // 17 errors return 0; } visual studio give me many errors...

Scaling equation for map so that scaling keeps user select center - Flash

ingredients: - one vector map - one masked viewing area - one slider taking the map from 100% to 600% - map is draggable - map movieclip center is the top left of the movieclip Let's say you zoom in, you drag the map so that the bottom right quadrant is in the viewing area, then you zoom out. The problem: Because the "center" of the ...

<Map> = IDictionary.

I have 3 entities: class User {id,name...} class UserUrl {id,user_id,url,url_type_id} class UrlType {id,name} My mapping: <class name="User" table="Users" lazy="false">   <id name="id" type="Int32" column="id">     <generator class="identity" />   </id>   <property name="name" column="name" type="String"/>   <map name="Urls" table="User...

yet another STL tree question

Hello everyone, quite a funny question I have. I am working now on the HTML parser and I was using vector for all my input purposes which seemed quite fine and fast for creating tree. In another application I need to edit HTML structure and now inserting or reordering of the elements would be extremely painful using vector so I decid...

Very simple map implemention in C (for caching purpose) ?

I have a program that read urls in a file and does a gethostbyname() on each URL host. This call is quite consuming. I want to cache them. Is there a very simple map-base code snippet in C out there that I could use to do the caching? (I just don't want to reinvent the wheel). It has to have the following points : Open-source with ...

Object Conversion Pattern

Hi there. So I have several different objects coming from external sources (unmodifiable) that represent the same concept. For example, Address. I have com.namespace1.Address (with fields houseNum, street, city), com.namespace2.Address (with fields h, s, c), namespace3.com.CoolAddress (with fields house_num, street, citY). The proble...

OpenLayers vs Google Maps ?

Hi, I have used Google Maps a couple of times, but what wondering about OpenLayers... Before starting any kind of coding, here are a couple of questions that come to my mind, and you might help me about : Why would I use OpenLayers instead of Google Maps ? Except for it's OSS licence, anyway Did you encounter any situation in which y...

Delete from <Map>

I have mapping: <class name="User" table="Users" lazy="false"> <id name="id" type="Int32" column="id"> <generator class="identity" /> </id> <property name="name" column="name" type="String"/> <map name="Urls" table="UserUrl" lazy="true" inverse="true" cascade="all"> <key column="user_id"></key> <index column="url_t...

Python List Comprehension Vs. Map

Is there a reason to prefer using map() over list comprehension or vice versa? Is one generally more effecient or generally considered more pythonic than the other? ...

how can i use JXMapViewer in my applet?

hi i want to write an applet that must render my map images with zoom/pan tools, i find out JXMapViewer can help me, how i can use it? where i can find related docs which help me to write an applet that request on my image server to provide tiles to render? what about image server and .... !!!!??? help me on : image server structure, ti...

Developing Geographic Thematic Maps with R

There are clearly a number of packages in R for all sorts of spatial analysis. That can by seen in the CRAN Task View: Analysis of Spatial Data. These packages are numerous and diverse, but all I want to do is some simple thematic maps. I have data with county and state FIPS codes and I have ESRI shape files of county and state boundarie...

Code crash when storing objects in `std::map`

typedef std::map<int, MyObject*> MyMap; MyMap* myMap = new MyMap; // ... myMap->insert( MyMap::value_type( 0, objectOfType_MyObject ) ); Why does my code crash with a stack trace going down to std::less<int>::operator() ? I understand that if I use a custom key class that I must provide a comparator, but this is an int. I'v...

Scala: how to merge a collection of Maps

I have a List of Map[String, Double], and I'd like to merge their contents into a single Map[String, Double]. How should I do this in an idiomatic way? I imagine that I should be able to do this with a fold. Something like: val newMap = Map[String, Double]() /: listOfMaps { (accumulator, m) => ... } Furthermore, I'd like to handle ...

Rewrite Route to map to default route

Hi! Because of the problems I experienced here: Zend_ Controller_ Router_Exception: “xyz” is not specified I want to have this route: ":module/:controller/:id" and map it onto this: ":module/:controller/:action/id/$id" Is there any possibility to do this with Zend Framework? I do not want to forward the browser to that URL. I jus...

Can I use custom image as map with Silverlight 3?

I have to develop a silverlight application which will run intranet. It will show local town map and have some images over the map like pushpins. I can use Deep Zoom for map application. But adding images and events for images is not supported. For silverlight 2, there is DeepEarth api for this. But How can I do this with Silverlight ...

Custom Map With Directions

I want to make a map program that gives directions around a campus (residence halls, football field, etc), and within buildings (to offices, cafeteria, etc). Is there anything existing that would help facilitate that? The alternative seems to be that I would have to create my own map of points and paths around campus and do path-finding...